summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-05-24 22:18:27 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-05-25 15:11:08 +0200
commitfa49b39bb4e9a9c4c730684c733b42bfba90f8ba (patch)
tree9980a07c12e9c1e276f627027e0608900caec097
parent28278839116d9e29132a61c2c0c612900c244708 (diff)
downloadbarebox-fa49b39bb4e9a9c4c730684c733b42bfba90f8ba.tar.gz
barebox-fa49b39bb4e9a9c4c730684c733b42bfba90f8ba.tar.xz
pbl: Fix typo in make causing pbl files to be rebuilt
We had pbl_cc__o_c instead of pbl_cc_o_c. This caused all pbl object files to be rebuilt everytime due to missing .cmd file. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--scripts/Makefile.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index a95bbe4e74..4ef2c56a1b 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -233,7 +233,7 @@ define rule_pbl_cc_o_c
$(call echo-cmd,checksrc) $(cmd_checksrc) \
$(call echo-cmd,pbl_cc_o_c) $(cmd_pbl_cc_o_c); \
$(cmd_modversions) \
- scripts/basic/fixdep $(depfile) $@ '$(call make-cmd,pbl_cc__o_c)' > \
+ scripts/basic/fixdep $(depfile) $@ '$(call make-cmd,pbl_cc_o_c)' > \
$(dot-target).tmp; \
rm -f $(depfile); \
mv -f $(dot-target).tmp $(dot-target).cmd