aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-04-14 09:38:43 -0700
committerAdam Vandenberg2011-04-14 09:38:43 -0700
commitecab1e9173583b17197ad774aa9c18533dafd134 (patch)
tree1e2d2d95a6f4ed72c04e7056ad79770c5bb74bcb /Library
parentfec0ee1886c54b0302c0de105ca5b118adb2be30 (diff)
downloadhomebrew-ecab1e9173583b17197ad774aa9c18533dafd134.tar.bz2
libvpx: Fix stupid error
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libvpx.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/libvpx.rb b/Library/Formula/libvpx.rb
index e9046804d..f3f17d011 100644
--- a/Library/Formula/libvpx.rb
+++ b/Library/Formula/libvpx.rb
@@ -8,7 +8,7 @@ class Libvpx < Formula
depends_on 'yasm' => :build
def install
- args = "--prefix=#{prefix}"
+ args = ["--prefix=#{prefix}"]
# Configure detects 32-bit CPUs incorrectly.
args << "--target=generic-gnu" unless MacOS.prefer_64_bit?