Merge pull request #488 from stapelberg/patch-1

Fix race condition resulting in the service file being empty in some cases.
This commit is contained in:
Nikos Tsipinakis 2018-01-30 09:07:17 +02:00 committed by GitHub
commit 75c8f56137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,12 +132,12 @@ install-dunst: dunst doc
install-doc: install-doc:
install -Dm644 dunstrc ${DESTDIR}${PREFIX}/share/dunst/dunstrc install -Dm644 dunstrc ${DESTDIR}${PREFIX}/share/dunst/dunstrc
install-service: service install-service-dbus install-service: install-service-dbus
install-service-dbus: install-service-dbus: service-dbus
install -Dm644 org.knopwob.dunst.service ${DESTDIR}${SERVICEDIR_DBUS}/org.knopwob.dunst.service install -Dm644 org.knopwob.dunst.service ${DESTDIR}${SERVICEDIR_DBUS}/org.knopwob.dunst.service
ifneq (0,${SYSTEMD}) ifneq (0,${SYSTEMD})
install-service: install-service-systemd install-service: install-service-systemd
install-service-systemd: install-service-systemd: service-systemd
install -Dm644 dunst.systemd.service ${DESTDIR}${SERVICEDIR_SYSTEMD}/dunst.service install -Dm644 dunst.systemd.service ${DESTDIR}${SERVICEDIR_SYSTEMD}/dunst.service
endif endif