aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorPhilip Weaver2009-10-02 12:20:50 -0700
committerMax Howell2009-10-12 17:26:57 +0100
commitfc743d7de191a5204f671bbb2ffce222b0af2409 (patch)
treed2208632bbef183320e06c1002055a64ad39602a /Library
parentd8b7ec8ac7553703ad2ae00b6b415a71ef3da3c5 (diff)
downloadhomebrew-fc743d7de191a5204f671bbb2ffce222b0af2409.tar.bz2
Use separate system calls for separate commands
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/emacs.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/emacs.rb b/Library/Formula/emacs.rb
index 92bef6bef..995ec0c61 100644
--- a/Library/Formula/emacs.rb
+++ b/Library/Formula/emacs.rb
@@ -15,7 +15,8 @@ class Emacs <Formula
"--disable-debug",
"--disable-dependency-tracking",
"--without-x"
- system "make; make install"
+ system "make"
+ system "make install"
end
end