diff options
author | Ted Gould <ted@gould.cx> | 2014-02-20 14:48:59 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-02-20 14:48:59 -0600 |
commit | e48b26bcffdf75b4454611f88018c1a783c2e9c9 (patch) | |
tree | 692cfe6cf8d5662e9140077ab4095faaee9216af /data | |
parent | dd359a11a25e6aa082d405c56c5b1255cd844c76 (diff) | |
download | ayatana-indicator-application-e48b26bcffdf75b4454611f88018c1a783c2e9c9.tar.gz ayatana-indicator-application-e48b26bcffdf75b4454611f88018c1a783c2e9c9.tar.bz2 ayatana-indicator-application-e48b26bcffdf75b4454611f88018c1a783c2e9c9.zip |
Removes the indicator service code
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index 3f9f7ad..b26a669 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -5,13 +5,13 @@ upstart_jobsdir = $(datadir)/upstart/sessions/ upstart_jobs_DATA = indicator-application.conf %.conf: %.conf.in - sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@ + $(AM_V_GEN) sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@ xdg_autostartdir = /etc/xdg/autostart xdg_autostart_DATA = indicator-application.desktop %.desktop: %.desktop.in - sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@ + $(AM_V_GEN) sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@ overridedir = $(pkgdatadir) override_DATA = ordering-override.keyfile @@ -22,5 +22,6 @@ EXTRA_DIST = \ ordering-override.keyfile CLEANFILES = \ - indicator-application.conf + indicator-application.conf \ + indicator-application.desktop |