diff options
| author | Mike McQuaid | 2014-01-04 13:13:38 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-01-04 13:35:45 +0000 |
| commit | 65094f1e4d77f622e25211e14afdf1003773f24b (patch) | |
| tree | 000e9013c9456be24728ec94ea8557256e78afed /Library/Formula/pygobject.rb | |
| parent | 5ab8db37d22cb0f5cbf72b456072530e47926243 (diff) | |
| download | homebrew-65094f1e4d77f622e25211e14afdf1003773f24b.tar.bz2 | |
pygobject: cleanup python usage.
Diffstat (limited to 'Library/Formula/pygobject.rb')
| -rw-r--r-- | Library/Formula/pygobject.rb | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/Library/Formula/pygobject.rb b/Library/Formula/pygobject.rb index f60ebb54c..969950389 100644 --- a/Library/Formula/pygobject.rb +++ b/Library/Formula/pygobject.rb @@ -7,7 +7,6 @@ class Pygobject < Formula depends_on 'pkg-config' => :build depends_on 'glib' - depends_on :python option :universal @@ -18,11 +17,9 @@ class Pygobject < Formula def install ENV.universal_binary if build.universal? - python do - system "./configure", "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--disable-introspection" - system "make install" - end + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--disable-introspection" + system "make install" end end |
