diff options
author | Michael Biebl <biebl@debian.org> | 2013-03-04 02:13:34 +0100 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2013-03-04 02:13:34 +0100 |
commit | 03c149144d374cffd40a17ffb067837e3e220933 (patch) | |
tree | 885aca6a14fc8877441b0efe78a82e731814f588 /configure.ac | |
parent | 5a37b9476f0e82a3ea0c3bd4cb19eb25cf776af7 (diff) |
build-sys: be more tolerant if dbus directories do not exist
use readlink -m instead of -f since we might be building in a minimal
chroot where those directories do not actually exist and readlink -f
would return an empty string.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index fab0b91c55..43b8225285 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=$(readlink -f $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../system-services)]) + [with_dbussystemservicedir=$(readlink -m $($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=$(readlink -f $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../interfaces)]) + [with_dbusinterfacedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../interfaces)]) AC_ARG_WITH([bashcompletiondir], AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]), |