]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
perf: disable shellcheck 19361/head
authorRobert Marko <robimarko@gmail.com>
Thu, 10 Jul 2025 13:08:19 +0000 (15:08 +0200)
committerRobert Marko <robimarko@gmail.com>
Thu, 10 Jul 2025 18:42:07 +0000 (20:42 +0200)
Since upstream commit:
b809fc656e763296f227b9b31e8f225e5977a8af ("perf build: Shellcheck support
for OUTPUT directory")

perf will attempt to run shellcheck on the test shell scripts, however
there is no point in doing this in OpenWrt and while perf checks for
shellcheck presence on your host it can fail to build in some cases.

So, simply disable it for now.

Link: https://github.com/openwrt/openwrt/pull/19361
Signed-off-by: Robert Marko <robimarko@gmail.com>
package/devel/perf/Makefile

index 11841ce43b5637f0d50602cf72909c776f22a962..e421f423e2aa4c480db529e00720bc0d3bb50533 100644 (file)
@@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk
 
 PKG_NAME:=perf
 PKG_VERSION:=$(LINUX_VERSION)
-PKG_RELEASE:=6
+PKG_RELEASE:=7
 
 PKG_BUILD_FLAGS:=no-mips16 no-lto
 PKG_BUILD_PARALLEL:=1
@@ -57,6 +57,7 @@ MAKE_FLAGS = \
        NO_LIBUNWIND=1 \
        NO_LIBZSTD=1 \
        NO_LIBCAP=1 \
+       NO_SHELLCHECK=1 \
        BUILD_BPF_SKEL=0 \
        CROSS_COMPILE="$(TARGET_CROSS)" \
        CC="$(TARGET_CC)" \