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)
This commit is contained in:
Glenn Morris 2018-12-15 15:08:28 -08:00
parent aca60820e1
commit 498b6cb0bf

View 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