aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2009-09-30 12:38:55 -0700
committerMax Howell2009-10-01 15:17:30 +0100
commit19b110ef28f077d9852aee4f3e6769b822fa88f4 (patch)
tree885a08ba7e2400803331c19a6188d9a7e0cde644 /Library
parent7884f2e95d1303c85b4e8bb0088241515551c7ad (diff)
downloadhomebrew-19b110ef28f077d9852aee4f3e6769b822fa88f4.tar.bz2
Update OCaml recipe per spicyj suggestion.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/objective-caml.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/objective-caml.rb b/Library/Formula/objective-caml.rb
index 0b33e33b9..eebbea737 100644
--- a/Library/Formula/objective-caml.rb
+++ b/Library/Formula/objective-caml.rb
@@ -6,10 +6,10 @@ class ObjectiveCaml <Formula
@md5='fe011781f37f6b41fe08e0706969a89e'
def install
+ system "./configure --prefix #{prefix}"
+ system "make world"
# 'world' can be built in parallel, but the other targets have problems
ENV.deparallelize
- system "./configure --prefix #{prefix}"
- system "make -j#{Hardware.processor_count} world"
system "make opt"
system "make opt.opt"
system "make install"