diff options
author | Stephen Warren <swarren@nvidia.com> | 2016-09-19 12:20:25 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-22 11:34:59 -0400 |
commit | fcd29a4d0e2ae3adbb129cf8e39eb025dc55e549 (patch) | |
tree | fb5a52c0580579c5be94d83bc2af22c941468ca9 /Makefile | |
parent | de4be9ec171c1eb8aa5dbcaef8ee515ed0109ebe (diff) | |
download | u-boot-fcd29a4d0e2ae3adbb129cf8e39eb025dc55e549.tar.gz |
Makefile: use if_change_dep for u-boot.cfg
cmd_cpp_cfg generates a dependency output, but because it's invoked using
if_changed rather than if_changed_dep, that dependency file is ignored.
This results in Kbuild not knowing about which files u-boot.cfg depends
on, so it may not be rebuilt when required.
A practical result of this is that u-boot.cfg may continue to reference
CONFIG_ options that no longer exist in the source tree, and this can
cause the adhoc config options check to fail.
This change modifies Makefile to use if_changed_dep, which in turn causes
all dependencies to be known to the next make invocation.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -937,7 +937,7 @@ u-boot.dis: u-boot $(OBJDUMP) -d $< > $@ u-boot.cfg: include/config.h FORCE - $(call if_changed,cpp_cfg) + $(call if_changed_dep,cpp_cfg) # Check that this build does not use CONFIG options that we don't know about # unless they are in Kconfig. All the existing CONFIG options are whitelisted, |