mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
17 lines
382 B
Bash
17 lines
382 B
Bash
#!/bin/bash
|
|
#
|
|
app_install_dir=/data/Triple-T/Software/mnglib3t/libmng-devel/contrib/kylix/mngview
|
|
app_path=$app_install_dir/mngview.bin
|
|
app_ld_path=$app_install_dir/lib
|
|
#
|
|
if [ -n "$LD_LIBRARY_PATH" ]; then
|
|
export LD_LIBRARY_PATH="$app_ld_path:$LD_LIBRARY_PATH"
|
|
else
|
|
export LD_LIBRARY_PATH="$app_ld_path"
|
|
fi
|
|
#
|
|
if [ -z "$LANG" ]; then
|
|
export LANG="en_US"
|
|
fi
|
|
#
|
|
exec $app_path $*
|