]> git.donarmstrong.com Git - debhelper.git/commitdiff
dh_auto_configure: Pass packlist=0 when running Makefile.PL, in case it is a Build...
authorJoey Hess <joey@gnu.kitenet.net>
Sun, 10 May 2009 17:07:06 +0000 (13:07 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Sun, 10 May 2009 17:07:06 +0000 (13:07 -0400)
debian/changelog
dh_auto_configure

index 05369192bae5ff2d63f99e84d198906af02121fc..7ef8a63c3879c8bc6de9d984277bf181609b52a6 100644 (file)
@@ -3,6 +3,9 @@ debhelper (7.2.10) UNRELEASED; urgency=low
   * Close COMPAT_IN filehandle. Closes: #527464
   * dh_auto_configure: Clarify man page re adding configure
     parameters. Closes: #527256
+  * dh_auto_configure: Pass packlist=0 when running Makefile.PL,
+    in case it is a Build.PL passthru, to avoid it creating
+    the .packlist file. Closes: #527990
 
  -- Joey Hess <joeyh@debian.org>  Thu, 07 May 2009 16:33:25 -0400
 
index da1f75119c268fe80184bd13d4bbf72b34d74f6c..2dc3eb3206006ca2a740178221ed833997716a00 100755 (executable)
@@ -91,7 +91,7 @@ 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;
-       doit("perl", "Makefile.PL", "INSTALLDIRS=vendor", @{$dh{U_PARAMS}});
+       doit("perl", "Makefile.PL", "INSTALLDIRS=vendor", "create_packlist=0", @{$dh{U_PARAMS}});
 }
 elsif (-e "Build.PL") {
        $ENV{PERL_MM_USE_DEFAULT}=1; # Module::Build can also use this.