aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2015-04-17 13:59:34 -0400
committerJack Nagel2015-04-17 14:00:31 -0400
commit35428557665a04d7319c44c4bcf996777048e548 (patch)
tree2d2b546a0694fc0e29728cc43e469fb9247179e4 /Library/Formula
parent27baa4cf3d3baefb35a93c736c65a8d9e7026988 (diff)
downloadhomebrew-35428557665a04d7319c44c4bcf996777048e548.tar.bz2
x264: fix 10-bit build flag
Closes #38112.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/x264.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/x264.rb b/Library/Formula/x264.rb
index 9df713425..f3eda70bf 100644
--- a/Library/Formula/x264.rb
+++ b/Library/Formula/x264.rb
@@ -43,7 +43,7 @@ class X264 < Formula
elsif Formula["gpac"].installed?
args << "--disable-lsmash"
end
- args << "--bit-depth=10" if build.include? "10-bit"
+ args << "--bit-depth=10" if build.with? "10-bit"
system "./configure", *args
system "make", "install"