]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
share/mk/: $SHELLCHECKFLAGS: Disable SC2028
authorAlejandro Colomar <alx@kernel.org>
Wed, 5 Nov 2025 17:49:35 +0000 (18:49 +0100)
committerAlejandro Colomar <alx@kernel.org>
Thu, 6 Nov 2025 00:43:03 +0000 (01:43 +0100)
It's known that echo(1) doesn't expand anything.  No need to warn.

Signed-off-by: Alejandro Colomar <alx@kernel.org>
share/mk/configure/build-depends/shellcheck/shellcheck.mk

index d90943756fef297f7a3c55572532cb8657317a6e..50d1fa4f285debef9e65e666e80a6beb13d9089b 100644 (file)
@@ -10,7 +10,9 @@ include $(MAKEFILEDIR)/configure/directory_variables/src.mk
 
 
 SHELLCHECK_CONF         := $(SYSCONFDIR)/shellcheck/shellcheckrc
-DEFAULT_SHELLCHECKFLAGS := -o all
+DEFAULT_SHELLCHECKFLAGS := \
+       -o all \
+       -e SC2028
 ifndef SHELLCHECKFLAGS
 SHELLCHECKFLAGS         :=
 endif