You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
599 B
30 lines
599 B
14 years ago
|
#!/bin/bash
|
||
|
|
||
|
#
|
||
|
# This script is part of the KGtk package.
|
||
|
#
|
||
|
# (C) Craig Drummond, 2007
|
||
|
#
|
||
|
# Craig.Drummond@lycos.co.uk
|
||
|
#
|
||
|
# --
|
||
|
# Released under the GPL v2 or later
|
||
|
# --
|
||
|
#
|
||
|
|
||
|
app=`basename $0`
|
||
|
|
||
|
if [ "$app" = "kqt3-wrapper" ] ; then
|
||
|
LD_PRELOAD=@CMAKE_INSTALL_PREFIX@/lib/kgtk/libkqt3.so:$LD_PRELOAD "$@"
|
||
|
else
|
||
|
dir=`dirname $0`
|
||
|
oldPath=$PATH
|
||
|
PATH=`echo $PATH | sed s:$dir::g`
|
||
|
real=`which $app`
|
||
|
PATH=$oldPath
|
||
|
|
||
|
if [ "$real" != "" ] && [ "`dirname $real`" != "$dir" ] ; then
|
||
|
LD_PRELOAD=@CMAKE_INSTALL_PREFIX@/lib@LIB_SUFFIX@/kgtk/libkqt3.so:$LD_PRELOAD $real "$@"
|
||
|
fi
|
||
|
fi
|