diff options
author | Michael Biebl <biebl@debian.org> | 2016-07-08 18:05:02 +0200 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2016-07-09 08:15:52 +0000 |
commit | fdcfd8b3f835d0512092cd16171fc44868b5d970 (patch) | |
tree | 5ee9d956971f6c3dde3a22389919d5affd8bb217 /dh | |
parent | 27d80816bae4756497fc673652d3636799f08c2f (diff) | |
download | debhelper-fdcfd8b3f835d0512092cd16171fc44868b5d970.tar.gz |
Enable systemd addon by default in compat level 11
Diffstat (limited to 'dh')
-rwxr-xr-x | dh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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(); |