[project @ 2001-10-13 20:44:52 by sof]
authorsof <unknown>
Sat, 13 Oct 2001 20:44:52 +0000 (20:44 +0000)
committersof <unknown>
Sat, 13 Oct 2001 20:44:52 +0000 (20:44 +0000)
Add explanatory comment as to why a pair of win32-specific options
are filtered out of CC_OPTS.

glafp-utils/lndir/Makefile

index 5f46930..d2c0d6d 100644 (file)
@@ -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))