[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/nt/gmake.defs
From: |
Jason Rumney |
Subject: |
[Emacs-diffs] Changes to emacs/nt/gmake.defs |
Date: |
Wed, 29 Jan 2003 18:33:08 -0500 |
Index: emacs/nt/gmake.defs
diff -c emacs/nt/gmake.defs:1.16 emacs/nt/gmake.defs:1.17
*** emacs/nt/gmake.defs:1.16 Wed Jan 15 07:04:38 2003
--- emacs/nt/gmake.defs Wed Jan 29 18:33:08 2003
***************
*** 78,87 ****
MAKETYPE=gmake
# Convert CURDIR to native file name, if in Cygwin format
! ifeq "$(shell cygpath $(CURDIR))" "$(CURDIR)"
! CURDIR := $(shell cygpath -m $(CURDIR))
! endif
THISDIR = .
# Cygwin has changed quoting rules somewhat since b20, in a way that
--- 78,93 ----
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
!
THISDIR = .
# Cygwin has changed quoting rules somewhat since b20, in a way that