aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-10-18 20:09:30 -0500
committerJack Nagel2013-10-18 20:14:16 -0500
commite33c01aab55cf7522596988b09532e941bd3044c (patch)
treee50342968bb78313238da9e38400b40df178d2e0 /Library
parent3b66a7d4fd41947f8c2a472a0dfe7afa840c93cf (diff)
downloadbrew-e33c01aab55cf7522596988b09532e941bd3044c.tar.bz2
libextractor: add runtime dependency on libtool
Fixes Homebrew/homebrew#23306.
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 d15030085..f05fe8b07 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -153,7 +153,7 @@ class FormulaAuditor
when *BUILD_TIME_DEPS
next if dep.build?
next if dep.name == 'autoconf' && f.name =~ /automake/
- next if dep.name == 'libtool' && %w{imagemagick libgphoto2 libp11}.any? { |n| f.name == n }
+ next if dep.name == 'libtool' && %w{imagemagick libgphoto2 libp11 libextractor}.any? { |n| f.name == n }
next if dep.name =~ /autoconf|pkg-config/ && f.name == 'ruby-build'
problem %{#{dep} dependency should be "depends_on '#{dep}' => :build"}