aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ace.rb
diff options
context:
space:
mode:
authorJack Nagel2014-04-16 23:10:10 -0500
committerJack Nagel2014-04-16 23:10:10 -0500
commitfda76758ef81680d1d46ef29e0fe75544e80f596 (patch)
treec054e04e9431ebf03016e06b95b356ccc13c8753 /Library/Formula/ace.rb
parente9d83fea22a7c793be1f20e345e9675d584a6e18 (diff)
downloadhomebrew-fda76758ef81680d1d46ef29e0fe75544e80f596.tar.bz2
ace: use make -C
Diffstat (limited to 'Library/Formula/ace.rb')
-rw-r--r--Library/Formula/ace.rb20
1 files changed, 9 insertions, 11 deletions
diff --git a/Library/Formula/ace.rb b/Library/Formula/ace.rb
index bf724fdbb..d5403c5ce 100644
--- a/Library/Formula/ace.rb
+++ b/Library/Formula/ace.rb
@@ -22,16 +22,14 @@ class Ace < Formula
ENV['DYLD_LIBRARY_PATH'] = "#{buildpath}/ace:#{buildpath}/lib"
# Done! We go ahead and build.
- cd "ace" do
- system "make", "-f", "GNUmakefile.ACE",
- "INSTALL_PREFIX=#{prefix}",
- "LDFLAGS=",
- "DESTDIR=",
- "INST_DIR=/ace",
- "debug=0",
- "shared_libs=1",
- "static_libs=0",
- "install"
- end
+ system "make", "-C", "ace", "-f", "GNUmakefile.ACE",
+ "INSTALL_PREFIX=#{prefix}",
+ "LDFLAGS=",
+ "DESTDIR=",
+ "INST_DIR=/ace",
+ "debug=0",
+ "shared_libs=1",
+ "static_libs=0",
+ "install"
end
end