summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2020-04-30 13:42:51 +0900
committerSascha Hauer <s.hauer@pengutronix.de>2020-05-04 08:43:04 +0200
commit9fcf81d5cf7c5e2384442e733e91d5c6f22cb0f8 (patch)
tree70a718cfaf0bfdf7744cf65231ccc688d0b75be8 /scripts
parented694c06e2b1d71711186889be80974d112bd4b4 (diff)
downloadbarebox-9fcf81d5cf7c5e2384442e733e91d5c6f22cb0f8.tar.gz
barebox-9fcf81d5cf7c5e2384442e733e91d5c6f22cb0f8.tar.xz
kbuild: add $(always-y) to 'targets'
I missed to sync this line in commit 421108c51da4 ("kbuild: rename hostprogs-y/always to hostprogs/always-y"). Since then, the files in always(-y) are needlessly rebuilt. Fixes: 421108c51da4 ("kbuild: rename hostprogs-y/always to hostprogs/always-y") Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index a6ed83e6d2..4cac47fdb2 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -258,7 +258,7 @@ pbl-%.o: %.S FORCE
$(call if_changed_dep,as_o_S)
targets += $(real-objs-y) $(real-objs-m) $(lib-y) $(pbl-y)
-targets += $(extra-y) $(MAKECMDGOALS) $(always)
+targets += $(extra-y) $(always-y) $(MAKECMDGOALS)
# Linker scripts preprocessor (.lds.S -> .lds)
# ---------------------------------------------------------------------------