aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2014-01-04 13:02:46 +0000
committerMike McQuaid2014-01-04 13:19:20 +0000
commitf6c073d542518b87f149212bccd9c2466336b486 (patch)
treeec608857bb213018916733cde99939aa280729f8 /Library/Formula
parenteb562f49997c5ec65ca92d8d2cc4335c357e91c1 (diff)
downloadhomebrew-f6c073d542518b87f149212bccd9c2466336b486.tar.bz2
bup: cleanup python usage.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/bup.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/Library/Formula/bup.rb b/Library/Formula/bup.rb
index 30cf132da..df4160f1e 100644
--- a/Library/Formula/bup.rb
+++ b/Library/Formula/bup.rb
@@ -8,12 +8,8 @@ class Bup < Formula
option "run-tests", "Run unit tests after compilation"
- depends_on :python
-
def install
- python do
- system "make"
- end
+ system "make"
system "make test" if build.include? "run-tests"
system "make", "install", "DESTDIR=#{prefix}", "PREFIX="
end