diff options
author | Florian Eckert <fe@dev.tdt.de> | 2022-02-07 17:49:23 +0100 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2022-02-07 17:49:25 +0100 |
commit | 2cbe230b6a65fd00c04cd528f6e5d4651218e1f8 (patch) | |
tree | e08398997e504aeab8a64d0ff2acd58f0e949f46 /utils/dbus | |
parent | 115bf07f6c449a17bf12a3e7e065ff252a772e6f (diff) |
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 <fe@dev.tdt.de>
Diffstat (limited to 'utils/dbus')
-rw-r--r-- | utils/dbus/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |