aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorCyril Lashkevich2013-11-20 18:00:41 +0300
committerAdam Vandenberg2013-11-20 17:52:53 -0800
commita3de72486cd35e59f97038a037ee34e9f3b73114 (patch)
tree1adf7f8ed42f79d25f9d3f9f5a2650282f9279ba /Library/Formula
parent5aa94d291ca7a55e60273b2b14c496c3e82356cd (diff)
downloadhomebrew-a3de72486cd35e59f97038a037ee34e9f3b73114.tar.bz2
luajit: fix build
make amalg separated from make install. Without this build can fail with more than one parallel buildjob. Closes #24530. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/luajit.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/luajit.rb b/Library/Formula/luajit.rb
index 6efcc8b95..3bcb5fbe9 100644
--- a/Library/Formula/luajit.rb
+++ b/Library/Formula/luajit.rb
@@ -26,7 +26,8 @@ class Luajit < Formula
# This doesn't yet work under superenv because it removes '-g'
args << 'CCDEBUG=-g' if build.include? 'enable-debug'
- system 'make', 'amalg', 'install', *args
+ system 'make', 'amalg', *args
+ system 'make', 'install', *args
end
test do