From: Glenn Morris Date: Sat, 15 Dec 2018 23:08:28 +0000 (-0800) Subject: Ensure flymake tests use gcc rather than $CC X-Git-Tag: emacs-27.0.90~3991 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=498b6cb0bf882367fe73f5efee5154348c209aea;p=emacs.git Ensure flymake tests use gcc rather than $CC * test/lisp/progmodes/flymake-resources/Makefile: Force use of gcc. This seems to be what the tests expect. (Bug#33735) --- diff --git a/test/lisp/progmodes/flymake-resources/Makefile b/test/lisp/progmodes/flymake-resources/Makefile index 494407567f2..05399ba388b 100644 --- a/test/lisp/progmodes/flymake-resources/Makefile +++ b/test/lisp/progmodes/flymake-resources/Makefile @@ -8,6 +8,6 @@ CC_OPTS = -Wall -Wextra ## normally use flymake, so it seems like just avoiding the issue ## in this test is fine. Set flymake-log-level to 3 to investigate. check-syntax: - GCC_COLORS= $(CC) $(CC_OPTS) ${CHK_SOURCES} || true + GCC_COLORS= gcc $(CC_OPTS) ${CHK_SOURCES} || true # eof