Author: Adrian-Ken Rueegsegger <ken@codelabs.ch>
Description: Properly handle configure options with quotation marks.

--- a/configure
+++ b/configure
@@ -40,10 +40,10 @@
 ###########################
 
 # Setup build environment
-for i in $@
+for i in "$@"
 do
 	option=`echo $i | cut -d= -f1`
-	value=`echo $i | cut -d= -f2`
+	value=`echo $i | cut -d= -f2-`
 
 	case $option in
 		--prefix ) 
