aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2014-01-23 20:49:24 -0800
committerMike McQuaid2014-01-24 17:31:47 +0000
commit90410e75aaa61fac2eefc5d7bb13b3489ee8486e (patch)
tree6dbe5b9379b237d583159c4a6df0d4987618fac5
parent7b9dd2b9e44373aeae370cc3691e5d0981431aff (diff)
downloadhomebrew-90410e75aaa61fac2eefc5d7bb13b3489ee8486e.tar.bz2
py3cairo: cleanup python usage (again).
-rw-r--r--Library/Formula/py3cairo.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/Library/Formula/py3cairo.rb b/Library/Formula/py3cairo.rb
index afe18e5c5..265fecbe1 100644
--- a/Library/Formula/py3cairo.rb
+++ b/Library/Formula/py3cairo.rb
@@ -11,12 +11,10 @@ class Py3cairo < Formula
depends_on :python3
def install
- python3 do
- ENV['PYTHON'] = "python3"
- system "./waf", "configure", "--prefix=#{prefix}"
- system "./waf", "build"
- system "./waf", "install"
- end
+ ENV['PYTHON'] = "python3"
+ system "./waf", "configure", "--prefix=#{prefix}"
+ system "./waf", "build"
+ system "./waf", "install"
end
test do