diff options
author | Michael Terry <michael.terry@canonical.com> | 2013-01-31 12:42:17 -0500 |
---|---|---|
committer | Michael Terry <michael.terry@canonical.com> | 2013-01-31 12:42:17 -0500 |
commit | e3d1f4a3d99f2b660a64c45c758e743969ca69b6 (patch) | |
tree | 91c9292e5bbe6fb62b970d84d9c9a78d9dd32b41 | |
parent | e73d88a47b9c2862db998f6bfb2310b033fd330a (diff) | |
download | ayatana-indicator-bluetooth-e3d1f4a3d99f2b660a64c45c758e743969ca69b6.tar.gz ayatana-indicator-bluetooth-e3d1f4a3d99f2b660a64c45c758e743969ca69b6.tar.bz2 ayatana-indicator-bluetooth-e3d1f4a3d99f2b660a64c45c758e743969ca69b6.zip |
install service into pkglibexecdir, not libexecdir
-rw-r--r-- | data/Makefile.am | 2 | ||||
-rw-r--r-- | data/indicator-bluetooth.service.in | 2 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index a279245..ac63ebc 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -2,7 +2,7 @@ dbus_servicesdir = $(DBUSSERVICEDIR) dbus_services_DATA = indicator-bluetooth.service %.service: %.service.in - sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ + sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@ EXTRA_DIST = indicator-bluetooth.service.in diff --git a/data/indicator-bluetooth.service.in b/data/indicator-bluetooth.service.in index 8b7a8cb..4d1c445 100644 --- a/data/indicator-bluetooth.service.in +++ b/data/indicator-bluetooth.service.in @@ -1,3 +1,3 @@ [D-BUS Service] Name=com.canonical.indicator.bluetooth -Exec=@libexecdir@/indicator-bluetooth-service +Exec=@pkglibexecdir@/indicator-bluetooth-service diff --git a/src/Makefile.am b/src/Makefile.am index d2ed9dd..f1b996d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -libexec_PROGRAMS = indicator-bluetooth-service +pkglibexec_PROGRAMS = indicator-bluetooth-service indicatordir = $(INDICATORDIR) indicator_LTLIBRARIES = libbluetooth.la |