yate/clients/run-gtk2

12 lines
343 B
Bash
Executable File

#!/bin/sh
# Script to run the Gtk2 client from the build directory
if [ -x yate-gtk2 -a -x ../run ]; then
# Need to put the path to Mozilla libraries here
export LD_LIBRARY_PATH=/usr/lib64/firefox-2.0.0.3
cd ..; exec ./run --executable clients/yate-gtk2 "$@"
else
echo "Could not find client executable or run script" >&2
fi