diff options
| author | Andrew Innes | 2001-06-01 13:18:27 +0000 |
|---|---|---|
| committer | Andrew Innes | 2001-06-01 13:18:27 +0000 |
| commit | 6dcb51ccd6b8e92166f953e3f04786487e4565b8 (patch) | |
| tree | 4ce830c3419ee0b736dd063df8710073b9d1b64d | |
| parent | 700797879b539ac0ee8f0f7e1b055a6bb238f0b3 (diff) | |
| download | emacs-6dcb51ccd6b8e92166f953e3f04786487e4565b8.tar.gz emacs-6dcb51ccd6b8e92166f953e3f04786487e4565b8.zip | |
(sh_output): Don't use $(warning ...) to output
messages, since that is not supported by GNU make 3.77.
| -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 = . | |||
| 84 | # affects makefiles using sh as the command processor, so we need to | 84 | # affects makefiles using sh as the command processor, so we need to |
| 85 | # detect which rules to use. | 85 | # detect which rules to use. |
| 86 | ifdef USING_SH | 86 | ifdef USING_SH |
| 87 | sh_output := $(shell echo [Please ignore a syntax error on the next line - it is intentional] 1>&2) | ||
| 87 | sh_output := $(shell echo foo") | 88 | sh_output := $(shell echo foo") |
| 88 | ifeq "$(sh_output)" "" | 89 | ifeq "$(sh_output)" "" |
| 89 | NEW_CYGWIN = 1 | 90 | NEW_CYGWIN = 1 |
| 90 | $(warning [Please ignore the syntax error just above - it is intentional]) | ||
| 91 | endif | 91 | endif |
| 92 | endif | 92 | endif |
| 93 | 93 | ||