]> git.eshelyaron.com Git - emacs.git/commitdiff
Disable cygpath kludge.
authorJason Rumney <jasonr@gnu.org>
Wed, 29 Jan 2003 23:33:08 +0000 (23:33 +0000)
committerJason Rumney <jasonr@gnu.org>
Wed, 29 Jan 2003 23:33:08 +0000 (23:33 +0000)
nt/gmake.defs

index 9671142be63e64e5b841341a4ce611dbce61f4cb..d3d24b9d5786b056344de1d2bea7e1a1ea9b78d0 100644 (file)
@@ -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