diff options
author | Niels Thykier <niels@thykier.net> | 2018-11-09 18:24:03 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2018-11-09 18:24:03 +0000 |
commit | 9fdf901c045012469c1e63e1e4da82499ddedcd2 (patch) | |
tree | dac6d6acceaec2648c7d974c1efe16dce4b8a8f2 | |
parent | 05d5284eec0a1f04732159e9fc6e83ecb0e0f505 (diff) | |
download | debhelper-9fdf901c045012469c1e63e1e4da82499ddedcd2.tar.gz |
dh: Fix inverted boolean logic
Signed-off-by: Niels Thykier <niels@thykier.net>
-rw-r--r-- | debian/changelog | 5 | ||||
-rwxr-xr-x | dh | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 8e92b326..1a9cbd16 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,11 @@ debhelper (11.5.2) UNRELEASED; urgency=medium * meson.pm: In compat 13, run tests with "meson test" rather than "ninja test". Thanks to Simon McVittie for the suggestion. (Closes: #912560) + * dh: Correctly include dh_installsystemduser in the sequence + in compat 12. It was excluded due to an inverted boolean + meaning it was added in compat up to (and incl.) compat 11. + Thanks to Michael Biebl for reporting the issue. + (Closes: #913329) -- Niels Thykier <niels@thykier.net> Sat, 03 Nov 2018 08:02:02 +0000 @@ -405,7 +405,7 @@ my @i = (qw{ dh_installinit }, (!compat(10) ? qw(dh_installsystemd) : qw()), - (compat(12) ? qw(dh_installsystemduser) : qw()), + (!compat(11) ? qw(dh_installsystemduser) : qw()), qw{ dh_installmenu |