From 19fa11110711ac4bc49f469c772ce7c36f98ca7c Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Thu, 2 Nov 2023 13:04:44 +0000 Subject: [PATCH] connman: dbus: Use non-deprecated installation path Quoting from D-Bus 1.14.0 release notes: > Third-party software should install default dbus policies for the system > bus into ${datadir}/dbus-1/system.d (this has been supported since dbus > 1.10, released in August 2015). Installing default dbus policies in > ${sysconfdir}/dbus-1/system.d is now considered to be deprecated. https://gitlab.freedesktop.org/dbus/dbus/-/blob/dbus-1.14.0/NEWS#L45-51 --- packages/network/connman/package.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/network/connman/package.mk b/packages/network/connman/package.mk index 338c6352ed..594a4c9235 100644 --- a/packages/network/connman/package.mk +++ b/packages/network/connman/package.mk @@ -40,7 +40,7 @@ PKG_CONFIGURE_OPTS_TARGET="--srcdir=.. \ --disable-stats \ --enable-client \ --enable-datafiles \ - --with-dbusconfdir=/etc \ + --with-dbusconfdir=/usr/share \ --with-systemdunitdir=/usr/lib/systemd/system \ --disable-silent-rules \ --disable-wifi \