From: Hauke Mehrtens Date: Sat, 16 Feb 2019 22:43:50 +0000 (+0100) Subject: strace: Only allow libdw or libunwind X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=ce8226a97133a7b105d9c626ff47a401b61748cd;p=openwrt%2Fstaging%2Fblogic.git strace: Only allow libdw or libunwind These two dependencies are mutual exclusive and it is only possible to select one of them, change the select to a chose so it is only possible to select one of them in OpenWrt menu config. Signed-off-by: Hauke Mehrtens --- diff --git a/package/devel/strace/Makefile b/package/devel/strace/Makefile index 55fdc80c1ba3..dd7f31eeebed 100644 --- a/package/devel/strace/Makefile +++ b/package/devel/strace/Makefile @@ -57,17 +57,19 @@ system calls a program makes while it is running. endef define Package/strace/config -menu "Select strace configuration options" - depends on PACKAGE_strace +choice + prompt "stack tracing support" + default STRACE_NONE -config STRACE_LIBDW - bool "Enable stack tracing support using libdw" - default n -config STRACE_LIBUNWIND - bool "Enable stack tracing support using libunwind (experimental)" - default n + config STRACE_NONE + bool "None" -endmenu + config STRACE_LIBDW + bool "libdw" + + config STRACE_LIBUNWIND + bool "libunwind (experimental)" +endchoice endef CONFIGURE_ARGS += \