configure
changeset 3201 65449801760c
parent 3200 7440ead8c22a
child 3202 ee43c4501036
--- a/configure	Tue Mar 14 19:21:49 2006 +0000
+++ b/configure	Tue Mar 14 20:56:07 2006 +0000
@@ -87,10 +87,10 @@
 			ITEM="CC_HOST"
 			;;
 		--os=*)
-			OS=`awk 'BEGIN { FS="="; $0="'$n'"; print $2;}'`
+			TARGET_OS=`awk 'BEGIN { FS="="; $0="'$n'"; print $2;}'`
 			;;
 		--os)
-			SITEM="OS"
+			SITEM="TARGET_OS"
 			;;
 		--windres=*)
 			handle WINDRES $n
@@ -187,10 +187,10 @@
 	esac
 done
 
-if ! test -z "$OS"
+if ! test -z "$TARGET_OS"
 then
-	OS=`echo $OS | tr '[:lower:]' '[:upper:]'`
-	case "$OS" in
+	TARGET_OS=`echo $TARGET_OS | tr '[:lower:]' '[:upper:]'`
+	case "$TARGET_OS" in
 		WIN32)
 			PARAM="$PARAM WIN32=1"
 			;;