From 9e24c7a9d491b690861ae213cdd93d80b022004a Mon Sep 17 00:00:00 2001 From: nibbles 2bits Date: Wed, 2 May 2012 16:42:59 -0700 Subject: ffmpeg: use linked_keg when checking optional deps ffmpeg when built as head checks if x264 is installed using `Formula.factory.installed?` that won't find x264 stable as it looks for a HEAD build. Switch from `.installed?` to `linked_keg.exist?` for all dependencies as this will find them whether they are installed as head or stable. Fixes #11996. Closes #12020. Signed-off-by: Charlie Sharpsteen --- Library/Formula/ffmpeg.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library/Formula/ffmpeg.rb') diff --git a/Library/Formula/ffmpeg.rb b/Library/Formula/ffmpeg.rb index 1cdb2f591..346c152e0 100644 --- a/Library/Formula/ffmpeg.rb +++ b/Library/Formula/ffmpeg.rb @@ -48,7 +48,7 @@ class Ffmpeg < Formula "--enable-libfreetype", "--cc=#{ENV.cc}"] - args << "--enable-libx264" if Formula.factory('x264').installed? + args << "--enable-libx264" if Formula.factory('x264').linked_keg.exist? args << "--enable-libfaac" if Formula.factory('faac').installed? args << "--enable-libmp3lame" if Formula.factory('lame').installed? args << "--enable-librtmp" if Formula.factory('rtmpdump').installed? -- cgit v1.2.3