diff --git a/Library/Homebrew/extend/ENV/shared.rb b/Library/Homebrew/extend/ENV/shared.rb index 1baaaccef5..ce5a56b61b 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] }