diff options
| author | Jack Nagel | 2013-06-14 11:48:48 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-06-14 11:49:00 -0500 |
| commit | 5539c97191aa499d2e1fc78fe97d534bd744076a (patch) | |
| tree | 52c09fdb43d7b78f945b3b834f75acecb7267429 /Library | |
| parent | a463398a8b30454e532029d67fc481ee5b71b25a (diff) | |
| download | brew-5539c97191aa499d2e1fc78fe97d534bd744076a.tar.bz2 | |
Fix another constant reference
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/extend/ENV.rb | 4 |
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 |
