diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-03-13 17:22:53 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-03-13 17:22:53 +0000 |
commit | 84a1f4e26139090b31e427904263a9b8347c3a2a (patch) | |
tree | a8adeaf4e839e0fd244da34361803c1062f38a4e /util | |
parent | cb2de6869c2f4929db37db7fc4fce0e345b1e799 (diff) |
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>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4003 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rwxr-xr-x | util/abuild/abuild | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild index fe8f8fd031..b8e288f192 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -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 |