Fixed getting the target parameter.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9690 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2004-10-31 23:56:16 +00:00
parent c967a72787
commit 7c8bb86f70

2
configure vendored
View File

@ -82,7 +82,7 @@ while [ $# \> 0 ] ; do
--include-gpl-addons) include_gpl_addons=1; shift 1;;
--floppy) assertparam "$1" $#; floppy=$2; shift 2;;
--bochs-debug) bochs_debug=1; shift 1;;
--target=*) target=(echo $T | cut -d'=' -f2-); shift 1;;
--target=*) target=`echo $1 | cut -d'=' -f2-`; shift 1;;
--help | -h) usage; exit 0;;
*) echo Invalid argument: \`$1\'; exit 1;;
esac