diff options
| author | Adam Vandenberg | 2011-03-23 10:42:26 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2011-03-23 10:42:26 -0700 | 
| commit | e3c98c9a13e70ac01c3c6720ab9915273aeefabd (patch) | |
| tree | cab212e3cffdf85cb1fac9ed85b8551a30011e3f /Library/Formula/coreutils.rb | |
| parent | 9246b24fa62b7b89760199954f0ccbd010ecba18 (diff) | |
| download | homebrew-e3c98c9a13e70ac01c3c6720ab9915273aeefabd.tar.bz2 | |
coreutils: install does not look parallel-safe
Diffstat (limited to 'Library/Formula/coreutils.rb')
| -rw-r--r-- | Library/Formula/coreutils.rb | 2 | 
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) | 
