summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-05-11 14:54:30 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-05-11 14:54:30 -0400
commit7d62553b8bdaeafaf46c65f385933b47657dd023 (patch)
treeb52ade70fe3855cc8c530815acb3d448e87bb07b /Debian/Debhelper/Buildsystem
parente5fbf2c660a99ab58837f1b9829f8faac7d8fc77 (diff)
incorporate create_packlist=0 fix from master
Diffstat (limited to 'Debian/Debhelper/Buildsystem')
-rw-r--r--Debian/Debhelper/Buildsystem/perl_makemaker.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/perl_makemaker.pm b/Debian/Debhelper/Buildsystem/perl_makemaker.pm
index eaaee537..1a01c34e 100644
--- a/Debian/Debhelper/Buildsystem/perl_makemaker.pm
+++ b/Debian/Debhelper/Buildsystem/perl_makemaker.pm
@@ -39,7 +39,8 @@ sub configure {
# 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", @_);
+ doit("perl", "Makefile.PL", "INSTALLDIRS=vendor",
+ "create_packlist=0", @_);
}
sub install {