mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-29 00:31:39 +00:00
6 lines
125 B
Bash
Executable File
6 lines
125 B
Bash
Executable File
#!/bin/sh
|
|
gamedir=${0%/*}
|
|
cd "$gamedir" || exit
|
|
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$gamedir/lib64"
|
|
exec ./wesnoth "$@"
|