From 4c1f20f4c999bc3505248de3c2e60c511b2b4e37 Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Mon, 13 Dec 2021 11:15:18 +0100 Subject: [PATCH] dbus: remove dbus-update-activation-environment and add dbus-test-tool The tool dbus-update-activiation-environment does not make sense there, we only use --system service. So this is not needed. But for debugging we need the tool dbus-test-tool. Signed-off-by: Florian Eckert --- utils/dbus/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/dbus/Makefile b/utils/dbus/Makefile index 9927f0b59..263e8c53f 100644 --- a/utils/dbus/Makefile +++ b/utils/dbus/Makefile @@ -139,7 +139,9 @@ endef define Package/dbus-utils/install $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dbus-{monitor,send,update-activation-environment} $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dbus-monitor $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dbus-send $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dbus-test-tool $(1)/usr/bin/ endef $(eval $(call BuildPackage,libdbus))