diff options
| author | Jack Nagel | 2013-06-14 11:48:48 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-06-14 11:49:00 -0500 |
| commit | 73a949b769e055f2180cb0b981e8c29a382ce9b9 (patch) | |
| tree | 9dbb4f2c642f434eec74d6a1bddc6d39866604ae /Library | |
| parent | 55c19bd7f84728625b98a5f1324c9e0aaaaede37 (diff) | |
| download | homebrew-73a949b769e055f2180cb0b981e8c29a382ce9b9.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 |
