summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Dh_Buildsystems.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2010-05-28 15:04:22 -0400
committerJoey Hess <joey@kitenet.net>2010-05-28 15:04:26 -0400
commit80c6dde6a7f9e29e0e00a775bf5c3bf84d3f9282 (patch)
treee5af8d8bf4a3136fcb8701e294a793bc3b8e03ab /Debian/Debhelper/Dh_Buildsystems.pm
parent4b62726560265020e5d44453e93e49e8f44aced0 (diff)
In v8 mode, prefer the perl_build buildsystem over perl_makemaker. Closes: #578805
Diffstat (limited to 'Debian/Debhelper/Dh_Buildsystems.pm')
-rw-r--r--Debian/Debhelper/Dh_Buildsystems.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Debian/Debhelper/Dh_Buildsystems.pm b/Debian/Debhelper/Dh_Buildsystems.pm
index a14ff037..22f80f9e 100644
--- a/Debian/Debhelper/Dh_Buildsystems.pm
+++ b/Debian/Debhelper/Dh_Buildsystems.pm
@@ -20,10 +20,11 @@ use constant BUILD_STEPS => qw(configure build test install clean);
# build systems MUST be added to the END of the list.
our @BUILDSYSTEMS = (
"autoconf",
+ (! compat(7) ? "perl_build" : ()),
"perl_makemaker",
"makefile",
"python_distutils",
- "perl_build",
+ (compat(7) ? "perl_build" : ()),
"cmake",
"ant",
"qmake",