diff options
| author | Charlie Sharpsteen | 2011-11-23 09:25:22 -0800 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-11-23 09:25:22 -0800 |
| commit | 399d73e10037885d0970ee1a7fa89ee2cf876bf8 (patch) | |
| tree | 200070d38150b1963a95b3c79c3d7b5269e95ecd | |
| parent | 75a7c33e6aac30db7827ef3f1076b282057fff5b (diff) | |
| download | brew-399d73e10037885d0970ee1a7fa89ee2cf876bf8.tar.bz2 | |
ENV.rb: Fix typo in Fortran environment variables
`FFFLAGS` should be `FFLAGS`.
| -rw-r--r-- | Library/Homebrew/extend/ENV.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ENV.rb b/Library/Homebrew/extend/ENV.rb index 88cb5e2ac..bcdd06014 100644 --- a/Library/Homebrew/extend/ENV.rb +++ b/Library/Homebrew/extend/ENV.rb @@ -158,7 +158,7 @@ module HomebrewEnvExtension if ARGV.include? '--default-fortran-flags' self['FCFLAGS'] = self['CFLAGS'] unless self['FCFLAGS'] - self['FFFLAGS'] = self['CFLAGS'] unless self['FFFLAGS'] + self['FFLAGS'] = self['CFLAGS'] unless self['FFLAGS'] elsif not self['FCFLAGS'] or self['FFLAGS'] opoo <<-EOS No Fortran optimization information was provided. You may want to consider |
