diff options
author | Niels Thykier <niels@thykier.net> | 2016-07-09 08:13:38 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2016-07-09 08:15:52 +0000 |
commit | 0ed36a617cd09e49161e88768454636f3ae456f6 (patch) | |
tree | f3ad964cb2e5f5a64ca590847262af0b3350a30d | |
parent | 44c16799c3f61447280a5b1403b62d06c98b02ec (diff) | |
download | debhelper-0ed36a617cd09e49161e88768454636f3ae456f6.tar.gz |
Enable systemd sequence in compat 10
Signed-off-by: Niels Thykier <niels@thykier.net>
-rw-r--r-- | debhelper.pod | 12 | ||||
-rwxr-xr-x | dh | 4 |
2 files changed, 7 insertions, 9 deletions
diff --git a/debhelper.pod b/debhelper.pod index 44fdbd30..1f950821 100644 --- a/debhelper.pod +++ b/debhelper.pod @@ -553,6 +553,12 @@ The B<autoreconf> sequence is now enabled by default. Please pass B<--without autoreconf> to B<dh> if this is not desirable for a given package +=item - + +The B<systemd> sequence is now enabled by default. Please pass +B<--without systemd> to B<dh> if this is not desirable for a given +package. + =back =item v11 @@ -589,12 +595,6 @@ B<--mainpackage> option. Please remember to check/update your doc-base files. -=item - - -The B<systemd> sequence is now enabled by default. Please pass -B<--without systemd> to B<dh> if this is not desirable for a given -package. - =back =back @@ -292,9 +292,7 @@ if (not compat(9, 1)) { # Enable autoreconf'ing by default in compat 10 or later. Use the # 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. + # Enable systemd support by default in compat 10 or later. unshift(@ARGV, "--with=systemd"); } |