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
commit01f5dc0dce73806e9c203e8d2687455f2b0e2d5e (patch)
tree8e19a44810e3baf3a0898cef2005df3d40a97340 /Library
parent70b2794b905e956e977391be316a8453fe7fb7c6 (diff)
downloadhomebrew-01f5dc0dce73806e9c203e8d2687455f2b0e2d5e.tar.bz2
libextractor: add runtime dependency on libtool
Fixes #23306.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libextractor.rb1
-rw-r--r--Library/Homebrew/cmd/audit.rb2
2 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/libextractor.rb b/Library/Formula/libextractor.rb
index bf531a836..69c4058e9 100644
--- a/Library/Formula/libextractor.rb
+++ b/Library/Formula/libextractor.rb
@@ -7,6 +7,7 @@ class Libextractor < Formula
sha1 '244eb3e16dadedea9dc827fb91cb309e2baa8637'
depends_on 'pkg-config' => :build
+ depends_on :libltdl
def install
ENV.deparallelize
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"}