mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
merge fixes from ioquake3.sh
This commit is contained in:
parent
aed3c9c667
commit
65c1d9a7a5
1 changed files with 10 additions and 4 deletions
|
@ -36,9 +36,15 @@ else
|
||||||
fi
|
fi
|
||||||
export LD_LIBRARY_PATH
|
export LD_LIBRARY_PATH
|
||||||
|
|
||||||
arch=`uname -m`
|
archs=`uname -m`
|
||||||
case "$arch" in
|
case "$archs" in
|
||||||
i?86) arch=i386 ;;
|
i?86) archs=i386 ;;
|
||||||
|
x86_64) archs="x86_64 i386" ;;
|
||||||
|
ppc64) archs="ppc64 ppc" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
exec ./ioquake3.$arch +set sv_pure 0 +set vm_cgame 0 +set vm_game 0 +set vm_ui 0 +set fs_game demoq3 "$@"
|
for arch in $archs; do
|
||||||
|
test -x ./ioquake3.$arch || continue
|
||||||
|
exec ./ioquake3.$arch +set sv_pure 0 +set vm_cgame 0 +set vm_game 0 +set vm_ui 0 +set fs_game demoq3 "$@"
|
||||||
|
done
|
||||||
|
echo "could not execute ioquake3" >&2
|
||||||
|
|
Loading…
Reference in a new issue