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
commita463398a8b30454e532029d67fc481ee5b71b25a (patch)
tree098aaec695cf33c2587385e002fad78e3041dbf2 /Library
parenteee5a0920297dafaeb51007add4be2052c31d4db (diff)
downloadbrew-a463398a8b30454e532029d67fc481ee5b71b25a.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