summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2013-01-02 13:03:42 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2013-01-02 13:03:42 +0100
commit3412aab365166c2a1bd9a1162b50e87c69e90f67 (patch)
tree5450fd7851662f9e83e97ee2d5427004b5e2b5c3
parent445d8352b94791ce18c91bc6cae25254ddf5f0ae (diff)
downloadptxdist-3412aab365166c2a1bd9a1162b50e87c69e90f67.tar.gz
ptxdist-3412aab365166c2a1bd9a1162b50e87c69e90f67.tar.xz
ptxd_make_world_get: use <PKG>_SOURCES in the default get stage
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/post/ptxd_make_world_get.make6
1 files changed, 4 insertions, 2 deletions
diff --git a/rules/post/ptxd_make_world_get.make b/rules/post/ptxd_make_world_get.make
index 7ec9f6130..152674c9b 100644
--- a/rules/post/ptxd_make_world_get.make
+++ b/rules/post/ptxd_make_world_get.make
@@ -29,8 +29,10 @@ $(SRCDIR)/%:
$(STATEDIR)/%.get:
@$(call targetinfo)
- @$(call world/get, $(PTX_MAP_TO_PACKAGE_$(*)))
- @$(call world/check_src, $(PTX_MAP_TO_PACKAGE_$(*)))
+ @$(foreach src,$($(PTX_MAP_TO_PACKAGE_$(*))_SOURCES), \
+ $(call world/get, $($(src)));)
+ @$(foreach src,$($(PTX_MAP_TO_PACKAGE_$(*))_SOURCES), \
+ $(call world/check_src, $($(src)));)
@$(call touch)
world/get = \