diff options
| author | Glenn Morris | 2014-12-15 21:08:40 -0500 |
|---|---|---|
| committer | Glenn Morris | 2014-12-15 21:08:40 -0500 |
| commit | 1fc1f89341daa10f9318f60d03493b5bbfd7e12e (patch) | |
| tree | 53ee1f3acad24500898a0b01c7570dc191032dd7 /test/automated/data | |
| parent | e2aec9bee32236f931df57ae621eb2666408da48 (diff) | |
| download | emacs-1fc1f89341daa10f9318f60d03493b5bbfd7e12e.tar.gz emacs-1fc1f89341daa10f9318f60d03493b5bbfd7e12e.zip | |
Disable gcc color in test/automated/data/flymake/Makefile
* test/automated/data/flymake/Makefile (check-syntax):
Prevent colorized gcc output from confusing flymake.
Diffstat (limited to 'test/automated/data')
| -rw-r--r-- | test/automated/data/flymake/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/automated/data/flymake/Makefile b/test/automated/data/flymake/Makefile index 33af51c3337..a92db78b46f 100644 --- a/test/automated/data/flymake/Makefile +++ b/test/automated/data/flymake/Makefile | |||
| @@ -2,7 +2,10 @@ | |||
| 2 | 2 | ||
| 3 | CC_OPTS = -Wall | 3 | CC_OPTS = -Wall |
| 4 | 4 | ||
| 5 | ## Recent gcc's (e.g. 4.8.2 on RHEL7) can automatically colorize their output, | ||
| 6 | ## which can confuse flymake. Set GCC_COLORS to disable that. | ||
| 7 | ## TODO is this something that should be fixed in flymake? | ||
| 5 | check-syntax: | 8 | check-syntax: |
| 6 | $(CC) $(CC_OPTS) ${CHK_SOURCES} | 9 | GCC_COLORS= $(CC) $(CC_OPTS) ${CHK_SOURCES} |
| 7 | 10 | ||
| 8 | # eof | 11 | # eof |