c690702870
- Slight speedup to profile.d/kde.sh (#465370) - (Build)Req: strigi(-devel) >= 0.6.3
24 lines
708 B
Bash
Executable File
24 lines
708 B
Bash
Executable File
## http://kde.ground.cz/tiki-index.php?page=Environment+Variables
|
|
## for possible entries here
|
|
|
|
## Make sure KDEDIRS is set
|
|
[ -z "$KDEDIRS" ] && KDEDIRS="/usr" && export KDEDIRS
|
|
|
|
## When/if using prelinking, avoids (some) use of kdeinit
|
|
if [ -z "$KDE_IS_PRELINKED" ] ; then
|
|
grep -qs '^PRELINKING=yes' /etc/sysconfig/prelink && \
|
|
KDE_IS_PRELINKED=1 && export KDE_IS_PRELINKED
|
|
fi
|
|
|
|
|
|
# handled in startkde, but this sets for other DE's too
|
|
if [ -n "$QT_PLUGIN_PATH" ] ; then
|
|
if ! echo "$QT_PLUGIN_PATH" | grep -qw `kde4-config --path qtplugins` ; then
|
|
QT_PLUGIN_PATH="$QT_PLUGIN_PATH:`kde4-config --path qtplugins`"
|
|
fi
|
|
else
|
|
QT_PLUGIN_PATH="`kde4-config --path qtplugins`"
|
|
fi
|
|
export QT_PLUGIN_PATH
|
|
|