aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend
diff options
context:
space:
mode:
authorJack Nagel2012-02-16 16:55:28 -0600
committerJack Nagel2012-02-16 16:55:28 -0600
commit59bd97bb893fd12e99d446aaa8abceb73c5b7afa (patch)
tree9dad898cba171059bf147c82f90838917526724f /Library/Homebrew/extend
parente7466c5b3354c5e389e29a56ec07f3dcbc51fd73 (diff)
downloadbrew-59bd97bb893fd12e99d446aaa8abceb73c5b7afa.tar.bz2
Unset CLICOLOR_FORCE in the build environment
If we're going to unset GREP_OPTIONS we may as well unset this one too, as it causes similar issues. Recent autoconf unset both of these. Fixes Homebrew/homebrew#8165. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Homebrew/extend')
-rw-r--r--Library/Homebrew/extend/ENV.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/extend/ENV.rb b/Library/Homebrew/extend/ENV.rb
index f77d0007e..c41b79f12 100644
--- a/Library/Homebrew/extend/ENV.rb
+++ b/Library/Homebrew/extend/ENV.rb
@@ -8,6 +8,7 @@ module HomebrewEnvExtension
delete('CPPFLAGS')
delete('LDFLAGS')
delete('GREP_OPTIONS') # can break CMake (lol)
+ delete('CLICOLOR_FORCE') # autotools doesn't like this
self['MAKEFLAGS'] = "-j#{self.make_jobs}"