summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem/perl_build.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-04-14 15:24:57 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-04-14 15:24:57 -0400
commitacd3bec058d14c227f1f45c42122caa6d7a09e89 (patch)
treeaffdab985c5aa2c60f6976e21332dae001c0c7a2 /Debian/Debhelper/Buildsystem/perl_build.pm
parent2a57fa03aefa2396ee49aa769f8cb0605ec3933b (diff)
more comments
Diffstat (limited to 'Debian/Debhelper/Buildsystem/perl_build.pm')
-rw-r--r--Debian/Debhelper/Buildsystem/perl_build.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/Debian/Debhelper/Buildsystem/perl_build.pm b/Debian/Debhelper/Buildsystem/perl_build.pm
index 9be71a27..550f2a5b 100644
--- a/Debian/Debhelper/Buildsystem/perl_build.pm
+++ b/Debian/Debhelper/Buildsystem/perl_build.pm
@@ -19,6 +19,12 @@ sub is_auto_buildable {
# Handles everything
my $ret = -e "Build.PL";
+ # XXX JEH what happens here if they run dh_auto_build,
+ # forgetting dh_auto_configure? I think it will just
+ # think it's not auto buildable and, assuming no other buildsystems
+ # succeed, silently do nothing. Perhaps it would be better, then,
+ # to omit the test below. Then, it would try to run ./Build
+ # which doesn't exist, which should result in a semi-useful error.
if ($action ne "configure") {
$ret &&= -e "Build";
}