diff options
author | Ted Gould <ted@canonical.com> | 2009-06-16 17:15:39 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-06-16 17:15:39 -0500 |
commit | 080aa534c8a204cb8a22c71059c9e4f681c5668f (patch) | |
tree | c6b4f6f94284d3e54f8b4b7f250345bf4c22905d /data/Makefile.am | |
parent | 094b80fb89c15cc369f4ca50e218cec12efbaadc (diff) | |
download | ayatana-indicator-session-080aa534c8a204cb8a22c71059c9e4f681c5668f.tar.gz ayatana-indicator-session-080aa534c8a204cb8a22c71059c9e4f681c5668f.tar.bz2 ayatana-indicator-session-080aa534c8a204cb8a22c71059c9e4f681c5668f.zip |
Building the service files more correctly.
Diffstat (limited to 'data/Makefile.am')
-rw-r--r-- | data/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index da1bcd2..e003b0e 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -5,8 +5,11 @@ service_in_files = indicator-status.service.in \ indicator-session.service.in dbus_services_DATA = $(service_in_files:.service.in=.service) -$(dbus_services_DATA): $(service_in_files) Makefile - @sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ +%.service: %.service.in + sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ + +#$(dbus_services_DATA): $(service_in_files) Makefile +# sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ EXTRA_DIST = $(service_in_files) |