diff -Nru dunst-1.3.0/debian/changelog dunst-1.3.0/debian/changelog --- dunst-1.3.0/debian/changelog 2018-01-28 08:50:17.000000000 +0000 +++ dunst-1.3.0/debian/changelog 2018-01-29 15:53:39.000000000 +0000 @@ -1,3 +1,9 @@ +dunst (1.3.0-2) unstable; urgency=medium + + * Makefile: correct dependencies to fix race condition (Closes: #888760) + + -- Michael Stapelberg Mon, 29 Jan 2018 16:53:39 +0100 + dunst (1.3.0-1) unstable; urgency=medium * Enable pristine-tar in debian/gbp.conf to reflect status quo diff -Nru dunst-1.3.0/debian/patches/makefile.patch dunst-1.3.0/debian/patches/makefile.patch --- dunst-1.3.0/debian/patches/makefile.patch 1970-01-01 00:00:00.000000000 +0000 +++ dunst-1.3.0/debian/patches/makefile.patch 2018-01-29 15:53:39.000000000 +0000 @@ -0,0 +1,27 @@ +Description: correct dependencies to fix race condition +Author: Michael Stapelberg +Forwarded: https://github.com/dunst-project/dunst/pull/488 +Bug-Debian: https://bugs.debian.org/888760 + +--- + +Index: dunst/Makefile +=================================================================== +--- dunst.orig/Makefile ++++ dunst/Makefile +@@ -132,12 +132,12 @@ install-dunst: dunst doc + install-doc: + install -Dm644 dunstrc ${DESTDIR}${PREFIX}/share/doc/dunst/dunstrc + +-install-service: service install-service-dbus +-install-service-dbus: ++install-service: install-service-dbus ++install-service-dbus: service-dbus + install -Dm644 org.knopwob.dunst.service ${DESTDIR}${SERVICEDIR_DBUS}/org.knopwob.dunst.service + ifneq (0,${SYSTEMD}) + install-service: install-service-systemd +-install-service-systemd: ++install-service-systemd: service-systemd + install -Dm644 dunst.systemd.service ${DESTDIR}${SERVICEDIR_SYSTEMD}/dunst.service + endif + diff -Nru dunst-1.3.0/debian/patches/series dunst-1.3.0/debian/patches/series --- dunst-1.3.0/debian/patches/series 2018-01-28 08:50:17.000000000 +0000 +++ dunst-1.3.0/debian/patches/series 2018-01-29 15:53:39.000000000 +0000 @@ -1 +1,2 @@ example_path.patch +makefile.patch