diff options
author | Wolfgang Denk <wd@denx.de> | 2008-05-09 10:16:13 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-05-09 10:16:13 +0200 |
commit | 4d31cdc45d3592a5545a649fb5a24b458a4e4b72 (patch) | |
tree | 327f98e42130576387e149b568c5c7f8ce89ea2c | |
parent | 908261f3fdb418091d8c60bfbd7eb85e5869b579 (diff) | |
download | u-boot-imx-4d31cdc45d3592a5545a649fb5a24b458a4e4b72.zip u-boot-imx-4d31cdc45d3592a5545a649fb5a24b458a4e4b72.tar.gz u-boot-imx-4d31cdc45d3592a5545a649fb5a24b458a4e4b72.tar.bz2 |
Avoid infinite loop "Generating include/autoconf.mk"
Fix a bogus circular dependency that caused an infinite loop of
"Generating include/autoconf.mk" again and again.
Signed-off-by: Wolfgang Denk <wd@denx.de>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -424,7 +424,7 @@ $(obj)System.map: $(obj)u-boot # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep. # the dep file is only include in this top level makefile to determine when # to regenerate the autoconf.mk file. -$(obj)include/autoconf.mk: $(obj)include/config.h $(VERSION_FILE) +$(obj)include/autoconf.mk: $(obj)include/config.h @$(XECHO) Generating include/autoconf.mk ; \ set -e ; \ : Generate the dependancies ; \ |