summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-02-09 08:34:09 -0600
committerTom Rini <[email protected]>2025-02-18 16:32:24 -0600
commit87eaf7781a3cc116c2fb04eac2471ac33f538291 (patch)
tree0d4cc834d31f349f9952fe02844248984b8c1cf7
parentf36e0d6111f33163555544085052303da9039375 (diff)
u-boot-initial-env: Add missing dependencies
When performing a build consisting of only a defconfig target and then this tool, we were missing two dependencies. Add them. Signed-off-by: Tom Rini <[email protected]>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d4fedd87fe6..41adac7bfc0 100644
--- a/Makefile
+++ b/Makefile
@@ -2512,7 +2512,7 @@ cmd_genenv = \
sed -e '/^\s*$$/d' | \
sort -t '=' -k 1,1 -s -o $@
-u-boot-initial-env: scripts_basic $(env_h) FORCE
+u-boot-initial-env: scripts_basic $(version_h) $(env_h) include/config.h FORCE
$(Q)$(MAKE) $(build)=tools $(objtree)/tools/printinitialenv
$(call if_changed,genenv)