From e33c01aab55cf7522596988b09532e941bd3044c Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Fri, 18 Oct 2013 20:09:30 -0500 Subject: [PATCH] libextractor: add runtime dependency on libtool Fixes Homebrew/homebrew#23306. --- Library/Homebrew/cmd/audit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index d150300854..f05fe8b077 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"}