diff options
author | Jason Rumney <jasonr@gnu.org> | 2003-01-29 23:33:08 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2003-01-29 23:33:08 +0000 |
commit | 7b6f060c0d7027455305f3a80ca144aa861d6514 (patch) | |
tree | fbd5138019dae1c7e3eae9a463958df221ed2d27 /nt/gmake.defs | |
parent | a56e4a5fd214b03439440bdf16314a98ad155ac1 (diff) | |
download | emacs-7b6f060c0d7027455305f3a80ca144aa861d6514.tar.gz |
Disable cygpath kludge.
Diffstat (limited to 'nt/gmake.defs')
-rw-r--r-- | nt/gmake.defs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/nt/gmake.defs b/nt/gmake.defs index 9671142be63..d3d24b9d578 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 |