diff options
author | Michael Biebl <biebl@debian.org> | 2013-03-04 01:39:22 +0100 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2013-03-04 01:47:19 +0100 |
commit | 5a37b9476f0e82a3ea0c3bd4cb19eb25cf776af7 (patch) | |
tree | 2054021bb03d74682aae31232ed1de41a4e5ea81 | |
parent | 25ee45f9953c121fc26a54a85ad7bb3a3180152b (diff) |
build-sys: resolve absolute path for the dbus directories
/usr/share/dbus-1/system-services simply looks a lot nicer then
/usr/share/dbus-1/services/../system-services
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 23322c7a85..fab0b91c55 100644 --- a/configure.ac +++ b/configure.ac @@ -806,12 +806,12 @@ AC_ARG_WITH([dbussessionservicedir], AC_ARG_WITH([dbussystemservicedir], AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]), [], - [with_dbussystemservicedir=$($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../system-services]) + [with_dbussystemservicedir=$(readlink -f $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../system-services)]) AC_ARG_WITH([dbusinterfacedir], AS_HELP_STRING([--with-dbusinterfacedir=DIR], [D-Bus interface directory]), [], - [with_dbusinterfacedir=$($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../interfaces]) + [with_dbusinterfacedir=$(readlink -f $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../interfaces)]) AC_ARG_WITH([bashcompletiondir], AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]), |