From 7e02d14e732abd7086de72f52bd5a4a0c014b817 Mon Sep 17 00:00:00 2001 From: "preed%mozilla.com" Date: Sat, 9 Dec 2006 02:47:38 +0000 Subject: [PATCH] Bug 363108: patcher2.pl --build-tools pulls from the trunk. This is bad for a number of reasons. This is a stop-gap measure to get --build-tools working again after the cairo/svg landing and the dbus landing. patch=tfullhart. r=preed. --- tools/patcher/patcher2.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/patcher/patcher2.pl b/tools/patcher/patcher2.pl index 165c9a23a649..315ade649259 100755 --- a/tools/patcher/patcher2.pl +++ b/tools/patcher/patcher2.pl @@ -194,6 +194,9 @@ sub BuildTools { $mozconfig = "mk_add_options MOZ_CO_PROJECT=tools/update-packaging\n"; $mozconfig .= "ac_add_options --enable-application=tools/update-packaging\n"; + # these aren't required and introduce more dependencies + $mozconfig .= "ac_add_options --disable-dbus\n"; + $mozconfig .= "ac_add_options --disable-svg\n"; # This is necessary because PANGO'S NOW A DEPENDANCY! WHEEEEEE. # (but update packaging doesn't need it) $mozconfig .= "ac_add_options --enable-default-toolkit=gtk2\n";