From 3942bb44e92bd8d53ea4a6b67c3ecf97c46c0981 Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" Date: Sun, 21 Nov 2021 14:07:56 -0300 Subject: [PATCH] Makefile: include *.patch in check-package Since a long time, we have a check-package check for patches. Make sure that this check runs in 'make check-package', by including *.patch in the find expression. There are still a number of patches without SoB, and these are not so trivial to fix, so for now, disable the SoB check. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) [Ricardo: do not run check for SoB for now] Signed-off-by: Ricardo Martincoski --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c456cadafb..1e0e0927ee 100644 --- a/Makefile +++ b/Makefile @@ -1224,8 +1224,8 @@ check-flake8: | xargs -- python3 -m flake8 --statistics check-package: - find $(TOPDIR) -type f \( -name '*.mk' -o -name '*.hash' -o -name 'Config.*' \) \ - -exec ./utils/check-package {} + + find $(TOPDIR) -type f \( -name '*.mk' -o -name '*.hash' -o -name 'Config.*' -o -name '*.patch' \) \ + -exec ./utils/check-package --exclude=Sob {} + include docs/manual/manual.mk -include $(foreach dir,$(BR2_EXTERNAL_DIRS),$(sort $(wildcard $(dir)/docs/*/*.mk)))