diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | debian/control.in | 2 | ||||
-rwxr-xr-x | debian/rules | 4 |
4 files changed, 5 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 27e20dd4..146fe225 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ zenity (3.26.0-1) UNRELEASED; urgency=medium * New upstream release * Bump Standards-Version to 4.1.1 + * Switch to dh_missing and abort on uninstalled files -- Michael Biebl <biebl@debian.org> Tue, 14 Nov 2017 14:45:27 +0100 diff --git a/debian/control b/debian/control index 70e0c684..ad8c940c 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Section: gnome Priority: optional Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org> Uploaders: Laurent Bigonville <bigon@debian.org>, Michael Biebl <biebl@debian.org> -Build-Depends: debhelper (>= 10), +Build-Depends: debhelper (>= 10.3), gnome-pkg-tools (>= 0.10), gnome-common, yelp-tools, diff --git a/debian/control.in b/debian/control.in index 369576a2..0a10cdcd 100644 --- a/debian/control.in +++ b/debian/control.in @@ -3,7 +3,7 @@ Section: gnome Priority: optional Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org> Uploaders: @GNOME_TEAM@ -Build-Depends: debhelper (>= 10), +Build-Depends: debhelper (>= 10.3), gnome-pkg-tools (>= 0.10), gnome-common, yelp-tools, diff --git a/debian/rules b/debian/rules index 0d374c26..1034409c 100755 --- a/debian/rules +++ b/debian/rules @@ -7,5 +7,5 @@ export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs -Wl,--as-needed %: dh $@ --with gnome -override_dh_install: - dh_install --list-missing +override_dh_missing: + dh_missing --fail-missing |