this commit should fix Ticket #122 (proper log files for all builds)
authorStefan Reinauer <stepan@coresystems.de>
Fri, 13 Mar 2009 17:22:53 +0000 (17:22 +0000)
committerStefan Reinauer <stepan@openbios.org>
Fri, 13 Mar 2009 17:22:53 +0000 (17:22 +0000)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4003 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

util/abuild/abuild

index fe8f8fd0315350d5ad4e5556b9c998421cb3ee47..b8e288f192de3612c34a8c6c40b36338d26d8d1b 100755 (executable)
@@ -234,6 +234,9 @@ function create_builddir
        if [ $? -eq 0 ]; then
                printf "ok\n"
                xml "  <builddir>ok</builddir>"
+               xml "  <log>"
+               xmlfile $build_dir/config.log
+               xml "  </log>"
                xml ""
                return 0
        else
@@ -276,6 +279,9 @@ function compile_target
        if [ $ret -eq 0 ]; then
                xml "  <compile>ok</compile>"
                xml "  <compiletime>${duration}s</compiletime>"
+               xml "  <log>"
+               xmlfile make.log
+               xml "  </log>"
                printf "ok\n" > compile.status
                printf "ok. (took ${duration}s)\n"
                cd $CURR