diff options
author | Andrew Innes <andrewi@gnu.org> | 2001-06-01 13:18:27 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2001-06-01 13:18:27 +0000 |
commit | 6dcb51ccd6b8e92166f953e3f04786487e4565b8 (patch) | |
tree | 4ce830c3419ee0b736dd063df8710073b9d1b64d /nt | |
parent | 700797879b539ac0ee8f0f7e1b055a6bb238f0b3 (diff) | |
download | emacs-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.defs | 2 |
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 |