diff options
| author | Adam Vandenberg | 2011-04-14 09:38:43 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-14 09:38:43 -0700 |
| commit | ecab1e9173583b17197ad774aa9c18533dafd134 (patch) | |
| tree | 1e2d2d95a6f4ed72c04e7056ad79770c5bb74bcb /Library | |
| parent | fec0ee1886c54b0302c0de105ca5b118adb2be30 (diff) | |
| download | homebrew-ecab1e9173583b17197ad774aa9c18533dafd134.tar.bz2 | |
libvpx: Fix stupid error
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libvpx.rb | 2 |
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? |
