Mercurial > emacs
changeset 49525:7dcad50a6b3e
Disable cygpath kludge.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Wed, 29 Jan 2003 23:33:08 +0000 |
parents | 040da019a1c8 |
children | 18a1f4500313 |
files | nt/gmake.defs |
diffstat | 1 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/nt/gmake.defs Wed Jan 29 23:31:11 2003 +0000 +++ b/nt/gmake.defs Wed Jan 29 23:33:08 2003 +0000 @@ -78,10 +78,16 @@ 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