aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libogg.rb
diff options
context:
space:
mode:
authorMax Howell2009-06-18 09:53:10 +0100
committerMax Howell2009-06-18 10:31:23 +0100
commit14d729a23c17640f4c28c307b5d6fb69d9711a25 (patch)
tree7409f0c2525bf734dfe32c053525c54d06e91bed /Library/Formula/libogg.rb
parentfc5bac7e5728be6fb473757361d167facdfcab87 (diff)
downloadhomebrew-14d729a23c17640f4c28c307b5d6fb69d9711a25.tar.bz2
libogg doesn't support parallel builds during install
Diffstat (limited to 'Library/Formula/libogg.rb')
-rw-r--r--Library/Formula/libogg.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/libogg.rb b/Library/Formula/libogg.rb
index 178835342..239be1f99 100644
--- a/Library/Formula/libogg.rb
+++ b/Library/Formula/libogg.rb
@@ -6,7 +6,9 @@ class Libogg <Formula
@md5='eaf7dc6ebbff30975de7527a80831585'
def install
- system "./configure --disable-debug --prefix='#{prefix}'"
+ system "./configure --disable-debug --disable-dependency-tracking --prefix='#{prefix}'"
+ system "make"
+ ENV['MAKEFLAGS']=''
system "make install"
end
end \ No newline at end of file