diff options
author | joey <joey> | 2003-07-19 14:57:55 +0000 |
---|---|---|
committer | joey <joey> | 2003-07-19 14:57:55 +0000 |
commit | 34ed74aef9d9c42de391dea7387884359d439f57 (patch) | |
tree | 85e47eacae24fbdc83d52f8deb14d68c2b99f08e | |
parent | 80911f2bcbc7d1854dc7b0fe75c74e1b62503ae9 (diff) | |
download | debhelper-34ed74aef9d9c42de391dea7387884359d439f57.tar.gz |
r597: * dh_scrollkeeper: fix postrm to not run if scrollkeeper is not present
-rw-r--r-- | autoscripts/postrm-scrollkeeper | 2 | ||||
-rw-r--r-- | debian/changelog | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/autoscripts/postrm-scrollkeeper b/autoscripts/postrm-scrollkeeper index 209a6e14..47b71544 100644 --- a/autoscripts/postrm-scrollkeeper +++ b/autoscripts/postrm-scrollkeeper @@ -1,3 +1,3 @@ -if [ "$1" = "remove" ]; then +if [ "$1" = "remove" ] && which scrollkeeper-update >/dev/null 2>&1; then scrollkeeper-update -q fi diff --git a/debian/changelog b/debian/changelog index 05ebdfae..212e5052 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (4.1.54) unstable; urgency=low + + * dh_scrollkeeper: fix postrm to not run if scrollkeeper is not present + + -- Joey Hess <joeyh@debian.org> Sat, 19 Jul 2003 16:57:30 +0200 + debhelper (4.1.53) unstable; urgency=low * dh_scrollkeeper: fixed some overenthusiastic quoting. Closes: #201810 |