]> git.sur5r.net Git - u-boot/commitdiff
error check autoconf.mk generation
authorMike Frysinger <vapier@gentoo.org>
Mon, 18 Feb 2008 10:10:07 +0000 (05:10 -0500)
committerWolfgang Denk <wd@denx.de>
Fri, 22 Feb 2008 11:33:23 +0000 (12:33 +0100)
If any of the steps for generating autoconf.mk fail currently, they go
unnoticed.  To fix, we can simply add 'set -e' to the long list of commands.
This is simpler and more robust than placing '|| exit $$?' after every line.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Makefile

index 82d3ab409ae1d6f167aecd52f31c2945ae7eed14..7d35d14aa90721a70707b9ca3ed562b534e76d50 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -414,6 +414,7 @@ $(obj)System.map:   $(obj)u-boot
 # to regenerate the autoconf.mk file.
 $(obj)include/autoconf.mk: $(obj)include/config.h $(VERSION_FILE)
        @$(XECHO) Generating include/autoconf.mk ; \
+       set -e ; \
        : Generate the dependancies ; \
        $(CC) -M $(HOST_CFLAGS) $(CPPFLAGS) -MQ $@ include/common.h > $@.dep ; \
        : Extract the config macros ; \