Author: stepan Date: 2009-03-13 18:22:53 +0100 (Fri, 13 Mar 2009) New Revision: 4003
Modified: trunk/coreboot-v2/util/abuild/abuild Log: this commit should fix Ticket #122 (proper log files for all builds)
Signed-off-by: Stefan Reinauer stepan@coresystems.de Acked-by: Stefan Reinauer stepan@coresystems.de
Modified: trunk/coreboot-v2/util/abuild/abuild =================================================================== --- trunk/coreboot-v2/util/abuild/abuild 2009-03-13 17:20:59 UTC (rev 4002) +++ trunk/coreboot-v2/util/abuild/abuild 2009-03-13 17:22:53 UTC (rev 4003) @@ -234,6 +234,9 @@ 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 @@ 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