diff options
| author | Glenn Morris | 2018-12-15 15:08:28 -0800 |
|---|---|---|
| committer | Glenn Morris | 2018-12-15 15:08:28 -0800 |
| commit | 498b6cb0bf882367fe73f5efee5154348c209aea (patch) | |
| tree | a614f4ea3de70d2c89a0dad25f5fd73a6d6a68a5 | |
| parent | aca60820e16560cc84fe9e093030262f6c4cbd59 (diff) | |
| download | emacs-498b6cb0bf882367fe73f5efee5154348c209aea.tar.gz emacs-498b6cb0bf882367fe73f5efee5154348c209aea.zip | |
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)
| -rw-r--r-- | test/lisp/progmodes/flymake-resources/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
| 8 | ## normally use flymake, so it seems like just avoiding the issue | 8 | ## normally use flymake, so it seems like just avoiding the issue |
| 9 | ## in this test is fine. Set flymake-log-level to 3 to investigate. | 9 | ## in this test is fine. Set flymake-log-level to 3 to investigate. |
| 10 | check-syntax: | 10 | check-syntax: |
| 11 | GCC_COLORS= $(CC) $(CC_OPTS) ${CHK_SOURCES} || true | 11 | GCC_COLORS= gcc $(CC_OPTS) ${CHK_SOURCES} || true |
| 12 | 12 | ||
| 13 | # eof | 13 | # eof |