From: Joey Hess Date: Sun, 10 May 2009 17:07:06 +0000 (-0400) Subject: dh_auto_configure: Pass packlist=0 when running Makefile.PL, in case it is a Build... X-Git-Tag: 7.2.10~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e136c5ed3db0ef8d403bccabcdb1b4b91af35a73;p=debhelper.git 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 --- diff --git a/debian/changelog b/debian/changelog index 0536919..7ef8a63 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Thu, 07 May 2009 16:33:25 -0400 diff --git a/dh_auto_configure b/dh_auto_configure index da1f751..2dc3eb3 100755 --- a/dh_auto_configure +++ b/dh_auto_configure @@ -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.