diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-10-25 18:32:31 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-10-25 18:32:31 +0200 |
commit | 2a885d69d224e95c6bfbe396d702289fe5e4dd2f (patch) | |
tree | 72097d1794992dc1ee81d7c49cd80b1603516c5b | |
parent | e77cb7bcd8a7d4e8a1416110ffd88f88399705a5 (diff) | |
download | ayatana-indicator-printers-2a885d69d224e95c6bfbe396d702289fe5e4dd2f.tar.gz ayatana-indicator-printers-2a885d69d224e95c6bfbe396d702289fe5e4dd2f.tar.bz2 ayatana-indicator-printers-2a885d69d224e95c6bfbe396d702289fe5e4dd2f.zip |
data/upstart/Makefile.am: Fix filename of .desktop file.
-rw-r--r-- | data/upstart/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/data/upstart/Makefile.am b/data/upstart/Makefile.am index 8eb41e9..4066aa6 100644 --- a/data/upstart/Makefile.am +++ b/data/upstart/Makefile.am @@ -7,11 +7,10 @@ EXTRA_DIST= # xdg_autostartdir = $(datadir)/upstart/xdg/autostart -xdg_autostart_DATA = indicator-printers.desktop +xdg_autostart_DATA = ayatana-indicator-printers.desktop xdg_autostart_in = $(xdg_autostart_DATA:.desktop=.desktop.in) $(xdg_autostart_DATA): $(xdg_autostart_in) $(AM_V_GEN) $(SED) -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@ BUILT_SOURCES += $(xdg_autostart_DATA) CLEANFILES += $(xdg_autostart_DATA) EXTRA_DIST += $(xdg_autostart_in) - |