summaryrefslogtreecommitdiff
path: root/nt
diff options
context:
space:
mode:
authorAndrew Innes <andrewi@gnu.org>2001-06-01 13:18:27 +0000
committerAndrew Innes <andrewi@gnu.org>2001-06-01 13:18:27 +0000
commit6dcb51ccd6b8e92166f953e3f04786487e4565b8 (patch)
tree4ce830c3419ee0b736dd063df8710073b9d1b64d /nt
parent700797879b539ac0ee8f0f7e1b055a6bb238f0b3 (diff)
downloademacs-6dcb51ccd6b8e92166f953e3f04786487e4565b8.tar.gz
(sh_output): Don't use $(warning ...) to output
messages, since that is not supported by GNU make 3.77.
Diffstat (limited to 'nt')
-rw-r--r--nt/gmake.defs2
1 files changed, 1 insertions, 1 deletions
diff --git a/nt/gmake.defs b/nt/gmake.defs
index 7756da0d606..583a054ca7c 100644
--- a/nt/gmake.defs
+++ b/nt/gmake.defs
@@ -84,10 +84,10 @@ THISDIR = .
# affects makefiles using sh as the command processor, so we need to
# detect which rules to use.
ifdef USING_SH
+sh_output := $(shell echo [Please ignore a syntax error on the next line - it is intentional] 1>&2)
sh_output := $(shell echo foo")
ifeq "$(sh_output)" ""
NEW_CYGWIN = 1
-$(warning [Please ignore the syntax error just above - it is intentional])
endif
endif