diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-07-12 01:15:52 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-07-12 01:15:52 +0200 |
commit | cd3069559a09b4e4f85a6f02aa8f0521f48359ca (patch) | |
tree | 1027fba81a97e61356cb400c5a447b059a19af62 /configure.ac | |
parent | 66a69314941b5020f57cda943095413c40d677d8 (diff) |
build-sys: don't enable color gcc on dumb terminals
Guys, we know that emacs is the best editor on earth, but unfortunately
its "M-x compile" terminal cannot do colors (well, it does its own
highlighting of the output anyway), and it will inform the programs it
calls about this with TERM=dumb, and gcc should check for that. But you
guys turned that off. Not cool. Let's turn it on again.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1e196f7307..802009efcd 100644 --- a/configure.ac +++ b/configure.ac @@ -133,7 +133,7 @@ CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\ -ffast-math \ -fno-common \ -fdiagnostics-show-option \ - -fdiagnostics-color \ + -fdiagnostics-color=auto \ -fno-strict-aliasing \ -fvisibility=hidden \ -ffunction-sections \ |