From 35a5032ae252903548477db979d36d497e0a122c Mon Sep 17 00:00:00 2001 From: sof Date: Sat, 13 Oct 2001 20:44:52 +0000 Subject: [PATCH] [project @ 2001-10-13 20:44:52 by sof] Add explanatory comment as to why a pair of win32-specific options are filtered out of CC_OPTS. --- glafp-utils/lndir/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/glafp-utils/lndir/Makefile b/glafp-utils/lndir/Makefile index 5f46930..d2c0d6d 100644 --- a/glafp-utils/lndir/Makefile +++ b/glafp-utils/lndir/Makefile @@ -9,4 +9,7 @@ DESTDIR=$(INSTBINDIR) include $(TOP)/mk/target.mk -CC_OPTS := $(filter-out -mno-cygwin -mwin32,$(CC_OPTS)) \ No newline at end of file +# Win32: cygwin supports symlinks, so make sure we +# don't feed in the mingw flags here. In other +# words, lndir.exe is a cygwin-based app. +CC_OPTS := $(filter-out -mno-cygwin -mwin32,$(CC_OPTS)) -- 1.7.10.4