- More fixes...

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1756 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Eric Biederman 2004-11-05 11:24:57 +00:00
parent 709850a21b
commit ca883c915a
1 changed files with 3 additions and 3 deletions

View File

@ -273,16 +273,16 @@ if [ $? != 0 ]; then
exit 1
fi
eval set -- "$args"
eval set "$args"
while true ; do
case $1 in
case "$1" in
-t|--target) shift; target=$1; shift;;
-a|--all) shift; buildall=true;;
-v|--verbose) shift; verbose=true;;
-V|--version) shift; myversion;;
-h|--help) shift; myhelp;;
--) shift; break;;
*) echo "Unrecognized argument" ; exit 1 ;;
*) break;;
esac
done