]> git.eshelyaron.com Git - emacs.git/commitdiff
(sh_output): Don't use $(warning ...) to output
authorAndrew Innes <andrewi@gnu.org>
Fri, 1 Jun 2001 13:18:27 +0000 (13:18 +0000)
committerAndrew Innes <andrewi@gnu.org>
Fri, 1 Jun 2001 13:18:27 +0000 (13:18 +0000)
messages, since that is not supported by GNU make 3.77.

nt/gmake.defs

index 7756da0d606a0f84221b2d1f121d59dc8fa2a313..583a054ca7c27623ccc0c2d1f884699587168358 100644 (file)
@@ -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