aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2017-01-10 16:25:10 +0100
committerJo-Philipp Wich <jo@mein.io>2017-01-10 16:26:55 +0100
commit90ed0aa859426d71fb71cf5df3646208d5f48e6e (patch)
tree76713cd332687d114a787251dc1d1c8e1364f45d /include
parent1ce9b566fd1d806cebe791c9872b65ca0fd46244 (diff)
downloadupstream-90ed0aa859426d71fb71cf5df3646208d5f48e6e.tar.gz
upstream-90ed0aa859426d71fb71cf5df3646208d5f48e6e.tar.bz2
upstream-90ed0aa859426d71fb71cf5df3646208d5f48e6e.zip
build: scan.mk: consider KernelPackage pattern as well
The removal of the ".+Package" pattern in scan.mk also caused the build system to skip over Makefiles defining only kmods. Adjust the grep pattern to consider packages with "call KernelPackage" signatures as well. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'include')
-rw-r--r--include/scan.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scan.mk b/include/scan.mk
index 9b361f8b3b..3a884fb5f5 100644
--- a/include/scan.mk
+++ b/include/scan.mk
@@ -51,7 +51,7 @@ $(OVERRIDELIST):
ifeq ($(SCAN_NAME),target)
GREP_STRING=BuildTarget
else
- GREP_STRING=(Build/DefaultTargets|BuildPackage)
+ GREP_STRING=(Build/DefaultTargets|BuildPackage|KernelPackage)
endif
$(FILELIST): $(OVERRIDELIST)