From: Alexander Couzens Date: Tue, 4 Sep 2018 01:10:24 +0000 (+0200) Subject: package/strace: don't link against libdw (debug symbols) X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=refs%2Fheads%2Fcoverity;p=openwrt%2Fstaging%2Flynxis.git 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 --- 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)"