diff options
author | Joey Hess <joey@kitenet.net> | 2011-01-25 17:13:21 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-01-25 17:13:21 -0400 |
commit | db7f72ff48072d3aafc1f6ffda9e3d8e477553d0 (patch) | |
tree | 9a296a73c414688e4662dd4470fb12823451c7c9 | |
parent | b6589ab069e32486da268791110fb3edd010d6ed (diff) | |
download | debhelper-db7f72ff48072d3aafc1f6ffda9e3d8e477553d0.tar.gz |
remove MODULEBUILDRC override
This doesn't work reliably, see #607313.
Probably that is caused by the perl_build buildsystem not being detected
for a package that has a Makefile.PL, and so MODULEBUILDRC is not
overridden. So, I could add it there too, but then it's also possible for
it to be run from a Makefile.. so I could add it to dh_auto_*. But
then there are packages that don't use those. So I conclude that dealing
with this in debhelper is out of its scope, and this needs to be fixed
at a higher level, probably dpkg-dev.
-rw-r--r-- | Debian/Debhelper/Buildsystem/perl_build.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/perl_build.pm b/Debian/Debhelper/Buildsystem/perl_build.pm index 2afa5e59..deb9a379 100644 --- a/Debian/Debhelper/Buildsystem/perl_build.pm +++ b/Debian/Debhelper/Buildsystem/perl_build.pm @@ -26,7 +26,6 @@ sub check_auto_buildable { sub do_perl { my $this=shift; - $ENV{MODULEBUILDRC} = "/dev/null"; $this->doit_in_sourcedir("perl", @_); } |