aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/audit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index d84095247..3a6bbbb02 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -597,7 +597,7 @@ class FormulaAuditor
problem "Define method #{$1.inspect} in the class body, not at the top-level"
end
- if line =~ /ENV.fortran/
+ if line =~ /ENV.fortran/ && !formula.requirements.map(&:class).include?(FortranDependency)
problem "Use `depends_on :fortran` instead of `ENV.fortran`"
end