summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Thykier <niels@thykier.net>2017-06-25 08:03:58 +0000
committerNiels Thykier <niels@thykier.net>2017-06-25 08:04:00 +0000
commit3d7fea7a32a7ea1c39ad2e33d4089a035059d5f6 (patch)
tree1100ec02bca46b140ea608e093686921fa0bd4b6
parent6630640e298212b75a882f537f24fe7dd5c79314 (diff)
downloaddebhelper-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/changelog2
-rwxr-xr-xdh_installcatalogs2
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;");
}