diff options
| author | Charlie Sharpsteen | 2011-11-23 09:25:22 -0800 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-11-23 09:25:22 -0800 |
| commit | 554b9afbb459c62c80377c7849f7516ff6c05a7c (patch) | |
| tree | ac283657dd6368094493a7b67acac353f36e6b50 /Library | |
| parent | af59bb9c79319b0c2e87e94c0ed9c6079cd09ec0 (diff) | |
| download | homebrew-554b9afbb459c62c80377c7849f7516ff6c05a7c.tar.bz2 | |
ENV.rb: Fix typo in Fortran environment variables
`FFFLAGS` should be `FFLAGS`.
Diffstat (limited to 'Library')
| -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 |
