aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorJack Nagel2013-11-15 00:15:50 -0600
committerJack Nagel2013-11-15 00:40:17 -0600
commitba0cfd3582702aa957edf37338c4e8f3391c65bf (patch)
tree95009cdbd7a0b2c4762c23e411a897a0a505dc00 /Library/Homebrew
parent0f0bcd4beda74782428fc7770f1aab253c419cad (diff)
downloadbrew-ba0cfd3582702aa957edf37338c4e8f3391c65bf.tar.bz2
Improve heuristic for detecting configure
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/extend/ENV/super.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/extend/ENV/super.rb b/Library/Homebrew/extend/ENV/super.rb
index a71e4075c..889ac58a0 100644
--- a/Library/Homebrew/extend/ENV/super.rb
+++ b/Library/Homebrew/extend/ENV/super.rb
@@ -53,9 +53,9 @@ module Superenv
delete('GREP_OPTIONS') # can break CMake
delete('CLICOLOR_FORCE') # autotools doesn't like this
- # Configure scripts generated by autoconf 2.56 or later export DUALCASE,
- # which we use as a heuristic for running under configure
- delete('DUALCASE')
+ # Configure scripts generated by autoconf 2.61 or later export as_nl, which
+ # we use as a heuristic for running under configure
+ delete('as_nl')
end
def setup_build_environment(formula=nil)