diff options
author | truelight <truelight@openttd.org> | 2006-03-23 13:24:09 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-03-23 13:24:09 +0000 |
commit | b0c905847071ca7e3bca224732ad816f946b59bc (patch) | |
tree | fc9c9f937226df29d7f436fef262ba06c44a4126 /configure | |
parent | 21ae42de510e262301811eb513baf9b928f9beb5 (diff) | |
download | openttd-b0c905847071ca7e3bca224732ad816f946b59bc.tar.xz |
(svn r4059) -Fix: add --dedicated flag to configure
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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;}'` ;; |