From: sof Date: Sat, 13 Oct 2001 20:44:52 +0000 (+0000) Subject: [project @ 2001-10-13 20:44:52 by sof] X-Git-Tag: Approximately_9120_patches~840 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=35a5032ae252903548477db979d36d497e0a122c;p=ghc-hetmet.git [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. --- 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))