diff options
| author | Jack Nagel | 2014-05-18 14:40:44 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-18 14:41:49 -0500 |
| commit | 72e20ae264bc6a0158b248a331d6f3c83945947b (patch) | |
| tree | 33ae9f997ecf12bb1c802bd0f6336f81938cca5e | |
| parent | dadf266681ded7bbc81ddc999f1d6c340e2a9d9c (diff) | |
| download | homebrew-72e20ae264bc6a0158b248a331d6f3c83945947b.tar.bz2 | |
Remove hardcoded reference to ENV
| -rw-r--r-- | Library/Homebrew/extend/ENV/shared.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ENV/shared.rb b/Library/Homebrew/extend/ENV/shared.rb index c258e9f34..eb87efc9e 100644 --- a/Library/Homebrew/extend/ENV/shared.rb +++ b/Library/Homebrew/extend/ENV/shared.rb @@ -113,7 +113,7 @@ module SharedEnvExtension # an alternate compiler, altering the value of environment variables. # If no valid compiler is found, raises an exception. def validate_cc!(formula) - if formula.fails_with? ENV.compiler + if formula.fails_with? compiler send CompilerSelector.new(formula).compiler end end |
