summaryrefslogtreecommitdiff
path: root/dh
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2016-07-08 18:05:02 +0200
committerNiels Thykier <niels@thykier.net>2016-07-09 08:15:52 +0000
commitfdcfd8b3f835d0512092cd16171fc44868b5d970 (patch)
tree5ee9d956971f6c3dde3a22389919d5affd8bb217 /dh
parent27d80816bae4756497fc673652d3636799f08c2f (diff)
downloaddebhelper-fdcfd8b3f835d0512092cd16171fc44868b5d970.tar.gz
Enable systemd addon by default in compat level 11
Diffstat (limited to 'dh')
-rwxr-xr-xdh4
1 files changed, 4 insertions, 0 deletions
diff --git a/dh b/dh
index 71f4f819..98295a28 100755
--- a/dh
+++ b/dh
@@ -293,6 +293,10 @@ if (not compat(9, 1)) {
# sequence add-on so existing --without=autoreconf
unshift(@ARGV, "--with=autoreconf");
}
+if (not compat(10, 1)) {
+ # Enable systemd support by default in compat 11 or later.
+ unshift(@ARGV, "--with=systemd");
+}
inhibit_log();