aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gobject-introspection.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/gobject-introspection.rb b/Library/Formula/gobject-introspection.rb
index 3d91b11cd..49b4df231 100644
--- a/Library/Formula/gobject-introspection.rb
+++ b/Library/Formula/gobject-introspection.rb
@@ -16,7 +16,10 @@ class GobjectIntrospection < Formula
def install
ENV.universal_binary if ARGV.build_universal?
- system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ # Tests require (at least) cairo, disable them.
+ "--disable-tests"
system "make install"
end
end