aboutsummaryrefslogtreecommitdiffstats
path: root/nt/gmake.defs
diff options
context:
space:
mode:
authorJason Rumney <[email protected]>2003-01-29 23:33:08 +0000
committerJason Rumney <[email protected]>2003-01-29 23:33:08 +0000
commit7b6f060c0d7027455305f3a80ca144aa861d6514 (patch)
treefbd5138019dae1c7e3eae9a463958df221ed2d27 /nt/gmake.defs
parenta56e4a5fd214b03439440bdf16314a98ad155ac1 (diff)
Disable cygpath kludge.
Diffstat (limited to 'nt/gmake.defs')
-rw-r--r--nt/gmake.defs12
1 files changed, 9 insertions, 3 deletions
diff --git a/nt/gmake.defs b/nt/gmake.defs
index 9671142be6..d3d24b9d57 100644
--- a/nt/gmake.defs
+++ b/nt/gmake.defs
@@ -78,10 +78,16 @@ endif
MAKETYPE=gmake
+# The following "ifeq" does not appear to DTRT, and therefore breaks
+# the build on mingw32. Also the -m option does not exist in many
+# (reasonably recent even) versions of Cygwin. These issues need to be
+# remedied before putting this cygpath kludge back in.
+
# Convert CURDIR to native file name, if in Cygwin format
-ifeq "$(shell cygpath $(CURDIR))" "$(CURDIR)"
-CURDIR := $(shell cygpath -m $(CURDIR))
-endif
+#ifeq "$(shell cygpath $(CURDIR))" "$(CURDIR)"
+#CURDIR := $(shell cygpath -m $(CURDIR))
+#endif
+
THISDIR = .
# Cygwin has changed quoting rules somewhat since b20, in a way that