[U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

Jean-Christophe PLAGNIOL-VILLARD plagnioj at jcrosoft.com
Sat May 23 21:42:36 CEST 2009


at the first run of make we generate the autoconf.mk and autoconf.mk.dep
if not already the case and we currently include only to .dep

in order to use these autogenerated value we need to include it also evenif
it's include in config.mk but it's done before there generation

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at jcrosoft.com>
---
 Makefile |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile
index 81a5cd0..7f3776e 100644
--- a/Makefile
+++ b/Makefile
@@ -475,6 +475,7 @@ $(obj)include/autoconf.mk: $(obj)include/config.h
 	mv $@.tmp $@
 
 sinclude $(obj)include/autoconf.mk.dep
+sinclude $(obj)include/autoconf.mk
 
 #########################################################################
 else	# !config.mk
-- 
1.6.3.1



More information about the U-Boot mailing list