diff options
| author | Yangbo Lu | 2020-04-14 07:24:50 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2020-04-26 19:20:47 +0000 |
| commit | 80f128d2aa7586ce068bbc24badc46ffab2edd4a (patch) | |
| tree | 95eff46df13c5faedbbdf75d2a0295be5ba6cb20 | |
| parent | b0416c9c128f1c557f9314003105b0c9e4d37b36 (diff) | |
| download | openwrt-80f128d2aa7586ce068bbc24badc46ffab2edd4a.tar.gz | |
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 <yangbo.lu@nxp.com>
| -rw-r--r-- | package/devel/perf/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/devel/perf/Makefile b/package/devel/perf/Makefile index aa5fb16f60..aa478a0431 100644 --- a/package/devel/perf/Makefile +++ b/package/devel/perf/Makefile @@ -48,6 +48,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" \ |