aboutsummaryrefslogtreecommitdiff
path: root/util/abuild
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2008-05-27 20:06:30 +0000
committerStefan Reinauer <stepan@openbios.org>2008-05-27 20:06:30 +0000
commitd9ce08dc8c0bde500b3845146b97c58e6d097d7c (patch)
tree9168cb74580b4ca4b37f586d214a3a87bb0fbb5b /util/abuild
parent9e734c29cf03497e3efd38d3ad9e3218c80be6aa (diff)
not sure why this ever worked. Add --xml / -x to the supported options (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3353 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/abuild')
-rwxr-xr-xutil/abuild/abuild8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild
index 9c972eac50..96d19cd61b 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -14,8 +14,8 @@
#set -x # Turn echo on....
-ABUILD_DATE="May 3rd, 2008"
-ABUILD_VERSION="0.6"
+ABUILD_DATE="May 27th, 2008"
+ABUILD_VERSION="0.7"
# Where shall we place all the build trees?
TARGET=$( pwd )/coreboot-builds
@@ -496,11 +496,11 @@ verbose=false
# parse parameters.. try to find out whether we're running GNU getopt
if [ "`getopt -V`" == "getopt.*" ]; then
- args=`getopt -l version,verbose,help,all,target:,broken,payloads:,test,cpus:,silent Vvhat:bp:Tc:s -- "$@"`
+ args=`getopt -l version,verbose,help,all,target:,broken,payloads:,test,cpus:,silent,xml Vvhat:bp:Tc:sx -- "$@"`
eval set "$args"
else
# Detected non-GNU getopt
- args=`getopt Vvhat:bp:Tc:s $*`
+ args=`getopt Vvhat:bp:Tc:sx $*`
set -- $args
fi