]> git.donarmstrong.com Git - debhelper.git/commitdiff
dh_auto_configure: Pass --skipdeps safely via PERL_AUTOINSTALL. Closes: #528235 7.2.13
authorJoey Hess <joey@gnu.kitenet.net>
Thu, 14 May 2009 19:21:26 +0000 (15:21 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Thu, 14 May 2009 19:21:26 +0000 (15:21 -0400)
debian/changelog
dh_auto_configure

index 05f050858d6ccbb900e92c6613828aeae01ab54a..08ed8266b07690fe9f287db25fdc47d2c056aa16 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (7.2.13) unstable; urgency=low
+
+  * dh_auto_configure: Pass --skipdeps safely via PERL_AUTOINSTALL.
+    Closes: #528235
+
+ -- Joey Hess <joeyh@debian.org>  Thu, 14 May 2009 15:21:21 -0400
+
 debhelper (7.2.12) unstable; urgency=low
 
   * dh_auto_configure: Revert --skipdeps change
index d69ed162fdefa7ea735ecf3f965f2431aa1049a9..5f48056f4d48bb27cbb58e2c67d04418dc2b6ff6 100755 (executable)
@@ -91,6 +91,9 @@ elsif (-e "Makefile.PL") {
        # If set to a true value then MakeMaker's prompt function will
        # always return the default without waiting for user input.
        $ENV{PERL_MM_USE_DEFAULT}=1;
+       # This prevents  Module::Install from interactive behavior.
+       $ENV{PERL_AUTOINSTALL}="--skipdeps";
+
        doit("perl", "Makefile.PL", "INSTALLDIRS=vendor",
                "create_packlist=0", @{$dh{U_PARAMS}});
 }