projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aca6082
)
Ensure flymake tests use gcc rather than $CC
author
Glenn Morris
<rgm@gnu.org>
Sat, 15 Dec 2018 23:08:28 +0000
(15:08 -0800)
committer
Glenn 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
patch
|
blob
|
history
diff --git
a/test/lisp/progmodes/flymake-resources/Makefile
b/test/lisp/progmodes/flymake-resources/Makefile
index 494407567f24ca048334671d53dd5da6c9825282..05399ba388bfb78ed8248bd3caa18ae767f93576 100644
(file)
--- 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