mlt: fix conditionals
This commit is contained in:
parent
18c27ce4ae
commit
4e0b6c2689
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ class Mlt < Formula
|
|||
|
||||
depends_on "gtk+" => :optional
|
||||
|
||||
if build.with? "gtk"
|
||||
if build.with? "gtk+"
|
||||
depends_on "pango"
|
||||
depends_on "gdk-pixbuf"
|
||||
end
|
||||
|
@ -36,7 +36,7 @@ class Mlt < Formula
|
|||
"--disable-jackrack",
|
||||
"--disable-swfdec"]
|
||||
|
||||
args << "--disable-gtk" if build.without? "gtk"
|
||||
args << "--disable-gtk" if build.without? "gtk+"
|
||||
|
||||
system "./configure", *args
|
||||
|
||||
|
|
Loading…
Reference in a new issue