mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
Makefile: Fix incorrect FORCE deps on env rules
These rules run on every build even if nothing has changed. The FORCE dependency is only needed for if_changed, not for cmd. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
9e3eb4a05f
commit
36fc832927
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1812,7 +1812,7 @@ quiet_cmd_gen_envp = ENVP $@
|
|||
rm -f $@; \
|
||||
touch $@ ; \
|
||||
fi
|
||||
include/generated/env.in: include/generated/env.txt FORCE
|
||||
include/generated/env.in: include/generated/env.txt
|
||||
$(call cmd,gen_envp)
|
||||
|
||||
# Regenerate the environment if it changes
|
||||
|
@ -1830,7 +1830,7 @@ quiet_cmd_envc = ENVC $@
|
|||
touch $@ ; \
|
||||
fi
|
||||
|
||||
include/generated/env.txt: $(wildcard $(ENV_FILE)) FORCE
|
||||
include/generated/env.txt: $(wildcard $(ENV_FILE))
|
||||
$(call cmd,envc)
|
||||
|
||||
# Write out the resulting environment, converted to a C string
|
||||
|
|
Loading…
Reference in a new issue