diff options
| author | Jack Nagel | 2013-08-30 19:00:19 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-08-30 19:00:19 -0500 |
| commit | 8828187b4c7d9b0220875d607fd5ff73d3894b89 (patch) | |
| tree | 535bc276e49763c3c25f4388a10b8f94a4c39cb3 /Library | |
| parent | 405ba3df68ce1e03800f67d631b76bbec2b1d14a (diff) | |
| download | brew-8828187b4c7d9b0220875d607fd5ff73d3894b89.tar.bz2 | |
ENV: use fc accessor
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/extend/ENV/shared.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/extend/ENV/shared.rb b/Library/Homebrew/extend/ENV/shared.rb index 1baaaccef..ce5a56b61 100644 --- a/Library/Homebrew/extend/ENV/shared.rb +++ b/Library/Homebrew/extend/ENV/shared.rb @@ -120,10 +120,10 @@ module SharedEnvExtension end def fortran - if self['FC'] + if fc ohai "Building with an alternative Fortran compiler" puts "This is unsupported." - self['F77'] ||= self['FC'] + self['F77'] ||= fc if ARGV.include? '--default-fortran-flags' flags_to_set = FC_FLAG_VARS.reject { |key| self[key] } |
