diff options
author | Niels Thykier <niels@thykier.net> | 2017-06-25 08:03:58 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2017-06-25 08:04:00 +0000 |
commit | 3d7fea7a32a7ea1c39ad2e33d4089a035059d5f6 (patch) | |
tree | 1100ec02bca46b140ea608e093686921fa0bd4b6 | |
parent | 6630640e298212b75a882f537f24fe7dd5c79314 (diff) | |
download | debhelper-3d7fea7a32a7ea1c39ad2e33d4089a035059d5f6.tar.gz |
dh_installcatalogs: Use explicit await triggers
Short term solution to avoid lintian warnings from debhelper inserted
glue.
Signed-off-by: Niels Thykier <niels@thykier.net>
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | dh_installcatalogs | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index e0d2b636..49adc212 100644 --- a/debian/changelog +++ b/debian/changelog @@ -46,6 +46,8 @@ debhelper (10.5) UNRELEASED; urgency=medium * dh_installwm.1: Correct documentation to reflect the behaviour in compat 10. Thanks to Robert Luberda for reporting the issue. (Closes: #865708) + * dh_installcatalogs: Use explicit await triggers to avoid trigger + a lintian warning. [ Iain Lane ] * Dh_Lib: Re-add warning + exit 0 for the -i/-a shortcut that was diff --git a/dh_installcatalogs b/dh_installcatalogs index af6129ac..7148d12d 100755 --- a/dh_installcatalogs +++ b/dh_installcatalogs @@ -109,7 +109,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { close CENTRALCAT; if (! $dh{NOSCRIPTS}) { - autotrigger($package, "activate", "update-sgmlcatalog"); + autotrigger($package, "activate-await", "update-sgmlcatalog"); autoscript($package, "postrm", "postrm-sgmlcatalog", "s%#CENTRALCAT#%$centralcat%g;"); } |