aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorJack Nagel2013-06-14 11:48:48 -0500
committerJack Nagel2013-06-14 11:49:00 -0500
commit5539c97191aa499d2e1fc78fe97d534bd744076a (patch)
tree52c09fdb43d7b78f945b3b834f75acecb7267429 /Library/Homebrew
parenta463398a8b30454e532029d67fc481ee5b71b25a (diff)
downloadbrew-5539c97191aa499d2e1fc78fe97d534bd744076a.tar.bz2
Fix another constant reference
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/extend/ENV.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/extend/ENV.rb b/Library/Homebrew/extend/ENV.rb
index b26669907..816cfb606 100644
--- a/Library/Homebrew/extend/ENV.rb
+++ b/Library/Homebrew/extend/ENV.rb
@@ -389,10 +389,10 @@ class << ENV
removed
end
def append_to_cflags newflags
- append(CC_FLAG_VARS, newflags)
+ append(HomebrewEnvExtension::CC_FLAG_VARS, newflags)
end
def remove_from_cflags val
- remove CC_FLAG_VARS, val
+ remove HomebrewEnvExtension::CC_FLAG_VARS, val
end
def append keys, value, separator = ' '
value = value.to_s