comparison nt/gmake.defs @ 91367:c70e45a7acfd

Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-324
author Miles Bader <miles@gnu.org>
date Wed, 30 Jan 2008 07:57:28 +0000
parents 606f2d163a64 98745918608f
children
comparison
equal deleted inserted replaced
91366:86f3a8f0a3a6 91367:c70e45a7acfd
97 sh_output := $(shell echo [Please ignore a syntax error on the next line - it is intentional] 1>&2) 97 sh_output := $(shell echo [Please ignore a syntax error on the next line - it is intentional] 1>&2)
98 sh_output := $(shell echo foo") 98 sh_output := $(shell echo foo")
99 ifeq "$(sh_output)" "" 99 ifeq "$(sh_output)" ""
100 NEW_CYGWIN = 1 100 NEW_CYGWIN = 1
101 endif 101 endif
102
103 # By default, newer versions of Cygwin mess with NTFS ACLs in an
104 # attempt to emulate traditional posix file permissions. This can
105 # cause bad effects, such as .exe files that are missing the
106 # FILE_EXECUTE/FILE_GENERIC_EXECUTE permissions when they are created
107 # with Cygwin commands that don't expect to be creating executable
108 # files. Then when we later use a non-Cygwin program to create the
109 # real .exe, the previous Cygwin defined ACL sticks.
110 CYGWIN=nontsec
111 export CYGWIN
102 endif 112 endif
103 113
104 ALL_DEPS = $^ 114 ALL_DEPS = $^
105 EMPTY = 115 EMPTY =
106 SPACE = $(EMPTY) $(EMPTY) 116 SPACE = $(EMPTY) $(EMPTY)