From: Yangbo Lu Date: Tue, 14 Apr 2020 07:24:50 +0000 (+0800) Subject: perf: build with NO_LIBCAP=1 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=5f0e25d96628b51b3614f089adf3dad24dd9bf53;p=openwrt%2Fstaging%2Fxback.git perf: build with NO_LIBCAP=1 Build with NO_LIBCAP=1. This is to resolve build issue. Package perf is missing dependencies for the following libraries: libcap.so.2 Signed-off-by: Yangbo Lu (cherry picked from commit 80f128d2aa7586ce068bbc24badc46ffab2edd4a) --- diff --git a/package/devel/perf/Makefile b/package/devel/perf/Makefile index 3d7110585c..ff5eb2e033 100644 --- a/package/devel/perf/Makefile +++ b/package/devel/perf/Makefile @@ -52,6 +52,7 @@ MAKE_FLAGS = \ NO_LIBAUDIT=1 \ NO_LIBCRYPTO=1 \ NO_LIBUNWIND=1 \ + NO_LIBCAP=1 \ CROSS_COMPILE="$(TARGET_CROSS)" \ CC="$(TARGET_CC)" \ LD="$(TARGET_CROSS)ld" \