summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosef Schlehofer2025-06-13 14:32:45 +0000
committerHauke Mehrtens2025-06-17 21:36:56 +0000
commit989b12999c5b7c35ec310d26ac6f01eb9567be6e (patch)
treed9522bb8de9805f5ee171e0de88a3b0edd779f62
parentf50551dd18318f2255da3ecd5de5cc1078201651 (diff)
downloadopenwrt-989b12999c5b7c35ec310d26ac6f01eb9567be6e.tar.gz
perf: disable slang support
libs/slang2 is getting picked up from the packages feed, if the slang2 is compiled first and then if you try to compile perf, it fails due to unmet dependency. Fixes: Package perf is missing dependencies for the following libraries: libslang.so.2 Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com> Link: https://github.com/openwrt/openwrt/pull/19123 (cherry picked from commit 764576eb5b6bae6c7142bd9e560f8c68da177b0d) Link: https://github.com/openwrt/openwrt/pull/19166 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r--package/devel/perf/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/devel/perf/Makefile b/package/devel/perf/Makefile
index 20be59516d..0129dc6118 100644
--- a/package/devel/perf/Makefile
+++ b/package/devel/perf/Makefile
@@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=perf
PKG_VERSION:=$(LINUX_VERSION)
-PKG_RELEASE:=5
+PKG_RELEASE:=6
PKG_BUILD_FLAGS:=no-mips16 no-lto
PKG_BUILD_PARALLEL:=1
@@ -50,6 +50,7 @@ MAKE_FLAGS = \
NO_LZMA=1 \
NO_BACKTRACE=1 \
NO_LIBNUMA=1 \
+ NO_SLANG=1 \
NO_GTK2=1 \
NO_LIBAUDIT=1 \
NO_LIBCRYPTO=1 \