diff options
author | Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> | 2013-02-05 10:41:04 -0500 |
---|---|---|
committer | Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> | 2013-02-05 10:41:04 -0500 |
commit | c328f6771ffc0ec5e6864c26ce7695e41313b190 (patch) | |
tree | 558d97a0cdb696fd2d9e0f75d9d6a11aa9148ec2 | |
parent | ca53a577e9708718ffb69ddb96a59acd111e5c1b (diff) | |
parent | e3d1f4a3d99f2b660a64c45c758e743969ca69b6 (diff) | |
download | ayatana-indicator-bluetooth-c328f6771ffc0ec5e6864c26ce7695e41313b190.tar.gz ayatana-indicator-bluetooth-c328f6771ffc0ec5e6864c26ce7695e41313b190.tar.bz2 ayatana-indicator-bluetooth-c328f6771ffc0ec5e6864c26ce7695e41313b190.zip |
With debhelper compat level 9, libexecdir no longer includes the package name. So use pkglibexecdir instead.
-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 |