diff options
author | worldofpeace <[email protected]> | 2019-12-13 10:45:27 -0500 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-01-09 00:25:15 +0100 |
commit | 474cc44934eb915f97dd8ba876e2256c40b4ea9a (patch) | |
tree | c3ac58ebd13df17aabfe8b99a241155d365daee5 | |
parent | 492866e4c9860349f89babd5e0a254ddc13911f0 (diff) | |
download | mate-settings-daemon-474cc44934eb915f97dd8ba876e2256c40b4ea9a.tar.bz2 mate-settings-daemon-474cc44934eb915f97dd8ba876e2256c40b4ea9a.tar.xz |
Default DBUS_SYS_DIR to ${datadir}/dbus-1/system.d
Since D-Bus 1.9.18 configuration files installed by third-party should
go in share/dbus-1/system.d. The old location is for sysadmin overrides.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2b847d5..4deeb78 100644 --- a/configure.ac +++ b/configure.ac @@ -128,7 +128,7 @@ AC_ARG_WITH(dbus-services, if ! test -z "$with_dbus_sys" ; then DBUS_SYS_DIR="$with_dbus_sys" else - DBUS_SYS_DIR='${sysconfdir}/dbus-1/system.d' + DBUS_SYS_DIR='${datadir}/dbus-1/system.d' fi AC_SUBST(DBUS_SYS_DIR) |