aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-11-11 23:33:38 -0800
committerAdam Vandenberg2013-11-11 23:33:38 -0800
commit2413ceef16028d14b09dfd2e2589538c3c3c785e (patch)
treeaa2047f6a5af6871c653e264dbe53668ff20b95a /Library/Formula
parent62adb70d3e9fcb6f09fb2761dd1d775cf5ee34b9 (diff)
downloadhomebrew-2413ceef16028d14b09dfd2e2589538c3c3c785e.tar.bz2
gtk+3/gsettings-desktop-schemas: disable schema compile
Compiling the schemes creates conflicting files. MacPorts disables these as well. Closes #22991.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gsettings-desktop-schemas.rb3
-rw-r--r--Library/Formula/gtk+3.rb3
2 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/gsettings-desktop-schemas.rb b/Library/Formula/gsettings-desktop-schemas.rb
index d9e896cbf..fa27871f5 100644
--- a/Library/Formula/gsettings-desktop-schemas.rb
+++ b/Library/Formula/gsettings-desktop-schemas.rb
@@ -13,7 +13,8 @@ class GsettingsDesktopSchemas < Formula
def install
system "./configure", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
+ "--prefix=#{prefix}",
+ "--disable-schemas-compile"
system "make install"
end
diff --git a/Library/Formula/gtk+3.rb b/Library/Formula/gtk+3.rb
index 5123c5696..b28a61690 100644
--- a/Library/Formula/gtk+3.rb
+++ b/Library/Formula/gtk+3.rb
@@ -25,7 +25,8 @@ class Gtkx3 < Formula
"--prefix=#{prefix}",
"--disable-glibtest",
"--enable-introspection=yes",
- "--enable-x11-backend"
+ "--enable-x11-backend",
+ "--disable-schemas-compile"
system "make install"
# Prevent a conflict between this and Gtk+2
mv bin/'gtk-update-icon-cache', bin/'gtk3-update-icon-cache'