aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorChris Cosby2011-10-10 13:26:05 -0400
committerCharlie Sharpsteen2011-10-10 12:44:54 -0700
commit5d44a411c3adfa0804ed0bacbd6e5b5ea59349d0 (patch)
tree0e5d12a142edf66d463c1d7e6cb5a5a8d0bfd78c /Library/Formula
parent651da745a563e2c3c54ca991da459445131cb220 (diff)
downloadhomebrew-5d44a411c3adfa0804ed0bacbd6e5b5ea59349d0.tar.bz2
easy-tag: Deparallelize make install
Closes 8053. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/easy-tag.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/easy-tag.rb b/Library/Formula/easy-tag.rb
index 7df8c46f4..fdcd066b2 100644
--- a/Library/Formula/easy-tag.rb
+++ b/Library/Formula/easy-tag.rb
@@ -19,6 +19,8 @@ class EasyTag < Formula
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
+ system "make"
+ ENV.deparallelize # make install fails in parallel
system "make install"
end
end