summaryrefslogtreecommitdiff
path: root/dh_auto_configure
diff options
context:
space:
mode:
authorAnsgar Burchardt <ansgar@43-1.org>2009-03-09 16:37:32 +0100
committerJoey Hess <joey@gnu.kitenet.net>2009-03-09 13:23:12 -0400
commite7dad1ee9b1cbee709ca9427b642573d78afc99d (patch)
tree0bfa07c186a0488484fed89f644c9c7f6326dd83 /dh_auto_configure
parent15ca2f911b6483d40fce804a78ff4546b471f051 (diff)
Set MODULEBUILDRC environment variable
When building packages using Module::Build and a ~/.modulebuildrc containing install install_base=~ the build will end up installing files in /root. This patch makes debhelper export MODULEBUILDRC="/dev/null" whenever Module::Build is used to avoid using ~/.modulebuildrc. Closes: #517423 Signed-off-by: Ansgar Burchardt <ansgar@43-1.org>
Diffstat (limited to 'dh_auto_configure')
-rwxr-xr-xdh_auto_configure1
1 files changed, 1 insertions, 0 deletions
diff --git a/dh_auto_configure b/dh_auto_configure
index 6b8adf52..41f6210f 100755
--- a/dh_auto_configure
+++ b/dh_auto_configure
@@ -92,6 +92,7 @@ elsif (-e "Makefile.PL") {
}
elsif (-e "Build.PL") {
$ENV{PERL_MM_USE_DEFAULT}=1; # Module::Build can also use this.
+ $ENV{MODULEBUILDRC} = "/dev/null";
doit("perl", "Build.PL", "installdirs=vendor", @{$dh{U_PARAMS}});
}