Makefile: Add the missing dependency for spl target
Wolfgang's patch for build time improvement is bringing out issues due to missing dependencies in the top-level Makefile. I get errors such as the below while building with many threads. make[1]: /home/a0393566local/u-boot-denx/tools/mkimage: Command not found This also allows one to do: $ make spl/u-boot-spl.bin if you want to build only spl Cc: Wolfgang Denk <wd@denx.de> Signed-off-by: Aneesh V <aneesh@ti.com>
This commit is contained in:
parent
042f9f1062
commit
bd25fdba45
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -486,7 +486,7 @@ mmc_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
|
|||
|
||||
$(obj)mmc_spl/u-boot-mmc-spl.bin: mmc_spl
|
||||
|
||||
$(obj)spl/u-boot-spl.bin: depend
|
||||
$(obj)spl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend
|
||||
$(MAKE) -C spl all
|
||||
|
||||
updater:
|
||||
|
|
Loading…
Reference in a new issue