aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/echoprint-codegen.rb
diff options
context:
space:
mode:
authorJack Nagel2014-04-16 23:19:51 -0500
committerJack Nagel2014-04-16 23:19:51 -0500
commit6922af8e82bec34a4556df9137edffb1531b0318 (patch)
tree3e564282a60f0a31f2be3c5510316964f36cefc6 /Library/Formula/echoprint-codegen.rb
parentd4893ec4d5115a821e07f1d274ac1651986078d0 (diff)
downloadhomebrew-6922af8e82bec34a4556df9137edffb1531b0318.tar.bz2
echoprint-codegen: use make -C
Diffstat (limited to 'Library/Formula/echoprint-codegen.rb')
-rw-r--r--Library/Formula/echoprint-codegen.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Formula/echoprint-codegen.rb b/Library/Formula/echoprint-codegen.rb
index 8843aead2..7f55b478c 100644
--- a/Library/Formula/echoprint-codegen.rb
+++ b/Library/Formula/echoprint-codegen.rb
@@ -11,8 +11,6 @@ class EchoprintCodegen < Formula
depends_on 'boost'
def install
- cd 'src' do
- system "make", "install", "PREFIX=#{prefix}"
- end
+ system "make", "-C", "src", "install", "PREFIX=#{prefix}"
end
end