diff options
| author | Samuel John | 2013-08-23 13:18:25 +0200 | 
|---|---|---|
| committer | Samuel John | 2013-08-23 13:18:25 +0200 | 
| commit | 270f29742b1dcd72b2746e8438fe86e9809569b2 (patch) | |
| tree | 1aa817c89b9207f3af2b4ceb394f01f75100f3b3 /Library/Formula/gobject-introspection.rb | |
| parent | 3dc4ad68a925a0a3ec9d44bd43a150df4b72f0ab (diff) | |
| download | homebrew-270f29742b1dcd72b2746e8438fe86e9809569b2.tar.bz2 | |
gobject-introspection: depends_on :python
To avoid ImportError: Symbol not found: _PyList_Check
during build.
Diffstat (limited to 'Library/Formula/gobject-introspection.rb')
| -rw-r--r-- | Library/Formula/gobject-introspection.rb | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/Library/Formula/gobject-introspection.rb b/Library/Formula/gobject-introspection.rb index 5b1b08281..dd3020079 100644 --- a/Library/Formula/gobject-introspection.rb +++ b/Library/Formula/gobject-introspection.rb @@ -11,6 +11,8 @@ class GobjectIntrospection < Formula    depends_on 'xz' => :build    depends_on 'glib'    depends_on 'libffi' +  # To avoid: ImportError: dlopen(./.libs/_giscanner.so, 2): Symbol not found: _PyList_Check +  depends_on :python    def install      ENV.universal_binary if build.universal? | 
