summaryrefslogtreecommitdiff
path: root/dh_auto_configure
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-04-24 20:37:42 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-04-24 20:37:42 -0400
commit8290ce0f62ee779b3cb7719776c1431140b91644 (patch)
treefe83fb2de18957910e1e3631dbf7a565508bfbab /dh_auto_configure
parent2aa24b38b2aef62087ab0d587d0b88cfde85ce6d (diff)
dh_auto_configure: Set PERL_MM_USE_DEFAULT when configuring MakeMaker packages to avoid interactive prompts.
Diffstat (limited to 'dh_auto_configure')
-rwxr-xr-xdh_auto_configure3
1 files changed, 3 insertions, 0 deletions
diff --git a/dh_auto_configure b/dh_auto_configure
index 4b01889b..6e56c953 100755
--- a/dh_auto_configure
+++ b/dh_auto_configure
@@ -85,6 +85,9 @@ if (-x "configure") {
doit("./configure", @opts, @{$dh{U_PARAMS}});
}
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}});
}