From 7c8bb86f7055a65613a6da93ea1359dc4bff65bc Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 31 Oct 2004 23:56:16 +0000 Subject: [PATCH] Fixed getting the target parameter. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9690 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index cd404ba9f9..175b89099d 100755 --- a/configure +++ b/configure @@ -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