]> git.eshelyaron.com Git - emacs.git/commitdiff
Ensure flymake tests use gcc rather than $CC
authorGlenn Morris <rgm@gnu.org>
Sat, 15 Dec 2018 23:08:28 +0000 (15:08 -0800)
committerGlenn Morris <rgm@gnu.org>
Sat, 15 Dec 2018 23:08:28 +0000 (15:08 -0800)
* test/lisp/progmodes/flymake-resources/Makefile: Force use of gcc.
This seems to be what the tests expect.  (Bug#33735)

test/lisp/progmodes/flymake-resources/Makefile

index 494407567f24ca048334671d53dd5da6c9825282..05399ba388bfb78ed8248bd3caa18ae767f93576 100644 (file)
@@ -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