diff options
| author | Adam Vandenberg | 2011-08-11 12:22:43 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-08-11 12:22:43 -0700 |
| commit | f3b32a6c84b91ae37b534a5bfe3cca4af32982aa (patch) | |
| tree | e2cdb43b5bfab245e12c29384f868ea4e0d3245c | |
| parent | 96b564af49a3835c77f9630e5fcc711be8bf63ec (diff) | |
| download | homebrew-f3b32a6c84b91ae37b534a5bfe3cca4af32982aa.tar.bz2 | |
xvid: serialize install
| -rw-r--r-- | Library/Formula/xvid.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/xvid.rb b/Library/Formula/xvid.rb index 431de9b55..920ed60e1 100644 --- a/Library/Formula/xvid.rb +++ b/Library/Formula/xvid.rb @@ -9,7 +9,8 @@ class Xvid < Formula cd 'build/generic' do system "./configure", "--disable-assembly", "--prefix=#{prefix}" system "make" - system "make install" # Need to call these separately + ENV.j1 # Or install sometimes fails + system "make install" end end end |
