From: Frédéric Buclin Date: Wed, 3 Aug 2011 07:56:25 +0000 (+0200) Subject: Bug 655910: When calling ./install-module.pl --all, install LWP before XML::Twig... X-Git-Tag: bugzilla-4.1.3~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dba6f45bc2a29194661b4c2d27684e34a5c0dece;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 5f276bf25d..c22c2de342 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -208,12 +208,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 @@ -227,6 +221,12 @@ sub OPTIONAL_MODULES { version => 0, feature => ['updates'], }, + { + package => 'XML-Twig', + module => 'XML::Twig', + version => 0, + feature => ['moving', 'updates'], + }, { package => 'PatchReader', module => 'PatchReader',