1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 00:01:33 -08:00

Disable gcc color in test/automated/data/flymake/Makefile

* test/automated/data/flymake/Makefile (check-syntax):
Prevent colorized gcc output from confusing flymake.
This commit is contained in:
Glenn Morris 2014-12-15 21:08:40 -05:00
parent e2aec9bee3
commit 1fc1f89341
2 changed files with 8 additions and 1 deletions

View file

@ -1,7 +1,11 @@
2014-12-16 Glenn Morris <rgm@gnu.org>
* automated/data/flymake/Makefile (check-syntax):
Prevent colorized gcc output from confusing flymake.
* automated/flymake-tests.el (flymake-tests-data-directory):
Change from flymake/warnpred to more standard data/flymake.
* automated/flymake/warnpred/: Rename to automated/data/flymake/.
2014-12-11 Michael Albinus <michael.albinus@gmx.de>

View file

@ -2,7 +2,10 @@
CC_OPTS = -Wall
## Recent gcc's (e.g. 4.8.2 on RHEL7) can automatically colorize their output,
## which can confuse flymake. Set GCC_COLORS to disable that.
## TODO is this something that should be fixed in flymake?
check-syntax:
$(CC) $(CC_OPTS) ${CHK_SOURCES}
GCC_COLORS= $(CC) $(CC_OPTS) ${CHK_SOURCES}
# eof