summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-05-14 15:22:36 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-05-14 15:22:53 -0400
commit59c01ce2d0a90b116bb0ea5ffbdcc939b49fbbf8 (patch)
tree3ae98206e96d77208b2fe7bb745ab0501e83f0a5 /Debian/Debhelper/Buildsystem
parent692ac0f0d2b7acc570cd6a5f8cac848109daf026 (diff)
parent70c804bc4a75c7b68d787484ccd22291494c6074 (diff)
merge master
Diffstat (limited to 'Debian/Debhelper/Buildsystem')
-rw-r--r--Debian/Debhelper/Buildsystem/perl_makemaker.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/Debian/Debhelper/Buildsystem/perl_makemaker.pm b/Debian/Debhelper/Buildsystem/perl_makemaker.pm
index a7bb5cc9..46dda4f8 100644
--- a/Debian/Debhelper/Buildsystem/perl_makemaker.pm
+++ b/Debian/Debhelper/Buildsystem/perl_makemaker.pm
@@ -39,6 +39,9 @@ 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;
+ # This prevents Module::Install from interactive behavior.
+ $ENV{PERL_AUTOINSTALL}="--skipdeps";
+
doit("perl", "Makefile.PL", "INSTALLDIRS=vendor",
"create_packlist=0",
@_);