(svn r4059) -Fix: add --dedicated flag to configure
authortruelight
Thu, 23 Mar 2006 13:24:09 +0000
changeset 3302 d02733d7cc59
parent 3301 4ac662c79ad3
child 3303 b0c382927186
(svn r4059) -Fix: add --dedicated flag to configure
configure
--- a/configure	Thu Mar 23 06:30:39 2006 +0000
+++ b/configure	Thu Mar 23 13:24:09 2006 +0000
@@ -12,6 +12,7 @@
 	echo "Params:"
 	echo " --debug            Create debug-release                [no]"
 	echo " --profile          Create profile-release              [no]"
+	echo " --dedicated        Make a dedicated build              [no]"
 	echo " --revision         Set the revision of the compilation [detected]"
 	echo " --target-cc        Sets the target-compiler            [\$CC]"
 	echo " --target-cxx       Sets the C++ target-compiler        []"
@@ -66,6 +67,9 @@
 		--profile)
 			PARAM="$PARAM PROFILE=1"
 			;;
+		--dedicated)
+			PARAM="$PARAM DEDICATED=1"
+			;;
 		--revision=*)
 			RELEASE=`awk 'BEGIN { FS="="; $0="'$n'"; print $2;}'`
 			;;