From: Frédéric Buclin Date: Wed, 3 Aug 2011 07:59:41 +0000 (+0200) Subject: Bug 655910: When calling ./install-module.pl --all, install LWP before XML::Twig... X-Git-Tag: bugzilla-4.0.2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb91eba71a2ebd948b9392ebf16aaee8d4828fac;p=thirdparty%2Fbugzilla.git Bug 655910: When calling ./install-module.pl --all, install LWP before XML::Twig, else arguments passed to build XML::Twig are propagated to Net::HTTP which then fails r/a=mkanat --- diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 5f4094f212..3238246419 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -200,12 +200,6 @@ sub OPTIONAL_MODULES { version => 0, feature => ['graphical_reports'], }, - { - package => 'XML-Twig', - module => 'XML::Twig', - version => 0, - feature => ['moving', 'updates'], - }, { package => 'MIME-tools', # MIME::Parser is packaged as MIME::Tools on ActiveState Perl @@ -219,6 +213,12 @@ sub OPTIONAL_MODULES { version => 0, feature => ['updates'], }, + { + package => 'XML-Twig', + module => 'XML::Twig', + version => 0, + feature => ['moving', 'updates'], + }, { package => 'PatchReader', module => 'PatchReader',