mirror of https://github.com/OpenTTD/OpenTTD
(svn r4059) -Fix: add --dedicated flag to configure
parent
9d216c1c56
commit
db2431e753
|
@ -12,6 +12,7 @@ function showhelp() {
|
||||||
echo "Params:"
|
echo "Params:"
|
||||||
echo " --debug Create debug-release [no]"
|
echo " --debug Create debug-release [no]"
|
||||||
echo " --profile Create profile-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 " --revision Set the revision of the compilation [detected]"
|
||||||
echo " --target-cc Sets the target-compiler [\$CC]"
|
echo " --target-cc Sets the target-compiler [\$CC]"
|
||||||
echo " --target-cxx Sets the C++ target-compiler []"
|
echo " --target-cxx Sets the C++ target-compiler []"
|
||||||
|
@ -66,6 +67,9 @@ do
|
||||||
--profile)
|
--profile)
|
||||||
PARAM="$PARAM PROFILE=1"
|
PARAM="$PARAM PROFILE=1"
|
||||||
;;
|
;;
|
||||||
|
--dedicated)
|
||||||
|
PARAM="$PARAM DEDICATED=1"
|
||||||
|
;;
|
||||||
--revision=*)
|
--revision=*)
|
||||||
RELEASE=`awk 'BEGIN { FS="="; $0="'$n'"; print $2;}'`
|
RELEASE=`awk 'BEGIN { FS="="; $0="'$n'"; print $2;}'`
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue