summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorRoger Leigh <rleigh@debian.org>2009-01-04 12:13:08 +0000
committerRoger Leigh <rleigh@debian.org>2009-01-04 12:13:08 +0000
commit8063c1faf9dfd440d6d8623b110358841030eef9 (patch)
tree64bd4d59d543dd5f0aead43da54b0f538481e66a /debian
parent93861eb57bdf4f01f2c65d5d660abe45011737bf (diff)
[debian] cups-driver-gutenprint.postinst: Don't use full path running cups-genppdupdate
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog4
-rw-r--r--debian/cups-driver-gutenprint.postinst3
2 files changed, 4 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index b6810bf..04eb44e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,8 +9,10 @@ gutenprint (5.2.2-1) experimental; urgency=low
Thanks to Amaya Rodrigo Sastre.
* ijsgutenprint no longer depends on obsolete ghostscript packages
(Closes: #447533).
+ * debian/cups-driver-gutenprint.postinst: Don't use full path
+ when running cups-genppdupdate (fix Lintian warning).
- -- Roger Leigh <rleigh@debian.org> Sun, 04 Jan 2009 11:58:23 +0000
+ -- Roger Leigh <rleigh@debian.org> Sun, 04 Jan 2009 12:07:27 +0000
gutenprint (5.2.1-2) experimental; urgency=low
diff --git a/debian/cups-driver-gutenprint.postinst b/debian/cups-driver-gutenprint.postinst
index 26bbd91..b0df009 100644
--- a/debian/cups-driver-gutenprint.postinst
+++ b/debian/cups-driver-gutenprint.postinst
@@ -27,7 +27,7 @@ set -e
if [ "$1" = "configure" ]; then
# Upgrade in-use PPD files
- /usr/sbin/cups-genppdupdate
+ cups-genppdupdate
# Restart CUPS (to register new and updated PPDs)
[ -x /etc/init.d/cups ] && invoke-rc.d cups force-reload || true
@@ -74,4 +74,3 @@ fi
exit 0
-