aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-06-14 11:09:23 -0500
committerJack Nagel2013-06-14 11:09:53 -0500
commit0cc9b4d416e7fcc08b815593dd0f915bc885b8fe (patch)
tree6014ed0979fe199293d2c399f4f7b2a13bc9763a /Library
parentbcf1985de7151dbe82240ec6f582263969124d32 (diff)
downloadhomebrew-0cc9b4d416e7fcc08b815593dd0f915bc885b8fe.tar.bz2
Fix constant reference
Diffstat (limited to 'Library')
-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 77ed6b8d0..b26669907 100644
--- a/Library/Homebrew/extend/ENV.rb
+++ b/Library/Homebrew/extend/ENV.rb
@@ -484,8 +484,8 @@ class << ENV
self['FC'] = which 'gfortran'
self['F77'] = self['FC']
- FC_FLAG_VARS.each {|key| self[key] = cflags}
- set_cpu_flags(FC_FLAG_VARS)
+ HomebrewEnvExtension::FC_FLAG_VARS.each {|key| self[key] = cflags}
+ set_cpu_flags(HomebrewEnvExtension::FC_FLAG_VARS)
else
onoe <<-EOS
This formula requires a fortran compiler, but we could not find one by