aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bbcp.rb
diff options
context:
space:
mode:
authorJack Nagel2014-04-16 23:10:10 -0500
committerJack Nagel2014-04-16 23:10:10 -0500
commitaef579fb78a07771fd1481c817d988405b0818b4 (patch)
tree12e147c54f1369441c45718148d7dd5bab1b8b77 /Library/Formula/bbcp.rb
parentc42a631eaa8956d7171318c748c14256892a7d4f (diff)
downloadhomebrew-aef579fb78a07771fd1481c817d988405b0818b4.tar.bz2
bbcp: use make -C
Diffstat (limited to 'Library/Formula/bbcp.rb')
-rw-r--r--Library/Formula/bbcp.rb9
1 files changed, 2 insertions, 7 deletions
diff --git a/Library/Formula/bbcp.rb b/Library/Formula/bbcp.rb
index e11ae7932..59ef633a3 100644
--- a/Library/Formula/bbcp.rb
+++ b/Library/Formula/bbcp.rb
@@ -11,13 +11,8 @@ class Bbcp < Formula
patch :DATA
def install
- mkdir "bin"
- mkdir "obj"
-
- cd "src" do
- system "make", "Darwin"
- end
-
+ mkdir %w{bin obj}
+ system "make", "-C", "src", "Darwin"
bin.install "bin/bbcp"
end