aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-08-19 12:32:58 -0500
committerJack Nagel2013-08-19 12:32:58 -0500
commit4ad2ad090116c7ed7ee41dd24d099c29286792af (patch)
treeb1160a4e514e1479c154e1e4f953141a5f372938 /Library
parenta533c8552f6a398a9220615e2bb17514347bd211 (diff)
downloadhomebrew-4ad2ad090116c7ed7ee41dd24d099c29286792af.tar.bz2
Reference self, not ENV, in ENV.fortran
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/ENV.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ENV.rb b/Library/Homebrew/extend/ENV.rb
index 64da1939a..338b9f408 100644
--- a/Library/Homebrew/extend/ENV.rb
+++ b/Library/Homebrew/extend/ENV.rb
@@ -484,7 +484,7 @@ class << ENV
def fortran
# superenv removes these PATHs, but this option needs them
# TODO fix better, probably by making a super-fc
- ENV['PATH'] += ":#{HOMEBREW_PREFIX}/bin:/usr/local/bin"
+ self['PATH'] += ":#{HOMEBREW_PREFIX}/bin:/usr/local/bin"
if self['FC']
ohai "Building with an alternative Fortran compiler"