summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Hieber <rhi@pengutronix.de>2020-06-23 12:17:30 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2020-06-24 11:51:50 +0200
commita81a9f0fa98d78c62749011666e360603ae35b08 (patch)
tree436befd72a58dc27613d25f356cfdf17e55f95ec
parentf56712604dde77922b90c9ae3b2a8bbd5192778c (diff)
downloadptxdist-a81a9f0fa98d78c62749.tar.gz
ptxdist-a81a9f0fa98d78c62749.tar.xz
template: kernel: fix make syntax
The closing brace for the foreach macro was removed when the line was converted from ';' to '$(ptx/nl)'. Fixes: 5b006ca1670901a4b74a ("template-kernel: use ptx/nl") Signed-off-by: Roland Hieber <rhi@pengutronix.de> Message-Id: <20200623101730.32495-1-rhi@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/templates/template-kernel-make3
1 files changed, 2 insertions, 1 deletions
diff --git a/rules/templates/template-kernel-make b/rules/templates/template-kernel-make
index e5b09daa0..4891b17af 100644
--- a/rules/templates/template-kernel-make
+++ b/rules/templates/template-kernel-make
@@ -80,7 +80,8 @@ $(STATEDIR)/kernel-@package@.install:
@$(call targetinfo)
@$(call world/install, KERNEL_@PACKAGE@)
@$(foreach image, $(KERNEL_@PACKAGE@_IMAGES), \
- install -m 644 $(image) $(IMAGEDIR)/$(notdir $(image))-@package@$(ptx/nl)
+ install -m 644 $(image) $(IMAGEDIR)/$(notdir $(image))-@package@$(ptx/nl) \
+ )
@$(call touch)
# ----------------------------------------------------------------------------