diff options
| author | Jack Nagel | 2015-04-17 13:59:34 -0400 |
|---|---|---|
| committer | Jack Nagel | 2015-04-17 14:00:31 -0400 |
| commit | 35428557665a04d7319c44c4bcf996777048e548 (patch) | |
| tree | 2d2b546a0694fc0e29728cc43e469fb9247179e4 /Library/Formula | |
| parent | 27baa4cf3d3baefb35a93c736c65a8d9e7026988 (diff) | |
| download | homebrew-35428557665a04d7319c44c4bcf996777048e548.tar.bz2 | |
x264: fix 10-bit build flag
Closes #38112.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/x264.rb | 2 |
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" |
