Author: stepan Date: 2008-05-27 22:06:30 +0200 (Tue, 27 May 2008) New Revision: 3353
Modified: trunk/coreboot-v2/util/abuild/abuild Log: 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
Modified: trunk/coreboot-v2/util/abuild/abuild =================================================================== --- trunk/coreboot-v2/util/abuild/abuild 2008-05-27 19:57:53 UTC (rev 3352) +++ trunk/coreboot-v2/util/abuild/abuild 2008-05-27 20:06:30 UTC (rev 3353) @@ -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 @@
# 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