From 9ae68baf35254f708af5044811e6025d0ce27a7e Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Tue, 4 Sep 2018 03:10:24 +0200 Subject: [PATCH] package/strace: don't link against libdw (debug symbols) libdw is not a dependency of strace. The build will fail if strace will link unexpected against it. Signed-off-by: Alexander Couzens --- package/devel/strace/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/devel/strace/Makefile b/package/devel/strace/Makefile index 3704aa8b15..71d4476df6 100644 --- a/package/devel/strace/Makefile +++ b/package/devel/strace/Makefile @@ -55,7 +55,9 @@ config PACKAGE_strace_libunwind default n endef -CONFIGURE_ARGS += --with-libunwind=$(if $(CONFIG_PACKAGE_strace_libunwind),yes,no) +CONFIGURE_ARGS += \ + --with-libunwind=$(if $(CONFIG_PACKAGE_strace_libunwind),yes,no) \ + --with-libdw=no MAKE_FLAGS := \ CCOPT="$(TARGET_CFLAGS)" -- 2.30.2