# HG changeset patch # User truelight # Date 2006-03-23 13:24:09 # Node ID 8eb316aa2bd260dc5f1931512c68ad3e51094e60 # Parent b61f7f2338b791f631a729fdb6e8d76eead1e24c (svn r4059) -Fix: add --dedicated flag to configure diff --git a/configure b/configure --- a/configure +++ b/configure @@ -12,6 +12,7 @@ function showhelp() { 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 @@ do --profile) PARAM="$PARAM PROFILE=1" ;; + --dedicated) + PARAM="$PARAM DEDICATED=1" + ;; --revision=*) RELEASE=`awk 'BEGIN { FS="="; $0="'$n'"; print $2;}'` ;;