From 2cbe230b6a65fd00c04cd528f6e5d4651218e1f8 Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Mon, 7 Feb 2022 17:49:23 +0100 Subject: [PATCH] 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 --- utils/dbus/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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