summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-03-23 13:24:09 +0000
committertruelight <truelight@openttd.org>2006-03-23 13:24:09 +0000
commitdb2431e753f0d71ecfd105d63bf2d2b113b35909 (patch)
treefc9c9f937226df29d7f436fef262ba06c44a4126 /configure
parent9d216c1c5694557f416112ccff077bce7a865645 (diff)
downloadopenttd-db2431e753f0d71ecfd105d63bf2d2b113b35909.tar.xz
(svn r4059) -Fix: add --dedicated flag to configure
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 6764ba959..676f90c9f 100755
--- 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;}'`
;;