From: Florian Eckert Date: Mon, 7 Feb 2022 16:49:23 +0000 (+0100) Subject: dbus: fix configure args for verbose mode X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=2cbe230b6a65fd00c04cd528f6e5d4651218e1f8;p=openwrt-packages.git dbus: fix configure args for verbose mode When switching from cmake to autotools, the wrong logging was used for the verbose compilations option. This commit fixes that. Signed-off-by: Florian Eckert --- diff --git a/utils/dbus/Makefile b/utils/dbus/Makefile index f95e93b02..40ae4c1eb 100644 --- a/utils/dbus/Makefile +++ b/utils/dbus/Makefile @@ -110,7 +110,7 @@ CONFIGURE_ARGS += \ --disable-xml-docs ifeq ($(CONFIG_DBUS_VERBOSE),y) - CONFIGURE_ARGS += --disable-verbose-mode + CONFIGURE_ARGS += --enable-verbose-mode endif define Build/InstallDev