aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/coreutils.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2011-03-23 10:42:26 -0700
committerAdam Vandenberg2011-03-23 10:42:26 -0700
commite3c98c9a13e70ac01c3c6720ab9915273aeefabd (patch)
treecab212e3cffdf85cb1fac9ed85b8551a30011e3f /Library/Formula/coreutils.rb
parent9246b24fa62b7b89760199954f0ccbd010ecba18 (diff)
downloadhomebrew-e3c98c9a13e70ac01c3c6720ab9915273aeefabd.tar.bz2
coreutils: install does not look parallel-safe
Diffstat (limited to 'Library/Formula/coreutils.rb')
-rw-r--r--Library/Formula/coreutils.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/coreutils.rb b/Library/Formula/coreutils.rb
index 291d59652..39af2cf72 100644
--- a/Library/Formula/coreutils.rb
+++ b/Library/Formula/coreutils.rb
@@ -39,6 +39,8 @@ class Coreutils < Formula
args << "--program-prefix=g" unless use_default_names?
system "./configure", *args
+ system "make"
+ ENV.j1 # Install isn't parallel-safe
system "make install"
(prefix+'aliases').write(coreutils_aliases)