d6cd28edfe
- kde.sh: fix typo/thinko
16 lines
507 B
Bash
Executable File
16 lines
507 B
Bash
Executable File
## http://kde.ground.cz/tiki-index.php?page=Environment+Variables
|
|
## for possible entries here
|
|
|
|
## When/if using prelinking, avoids (some) use of kdeinit
|
|
if [ -f /etc/sysconfig/prelink ]; then
|
|
if [ `grep '^PRELINKING=yes' /etc/sysconfig/prelink` ] ; then
|
|
[ -z "$KDE_IS_PRELINKED" ] && KDE_IS_PRELINKED=1 && export KDE_IS_PRELINKED
|
|
fi
|
|
fi
|
|
|
|
## IPV6 support
|
|
#[ -z "$KDE_NO_IPV6" ] && KDE_NO_IPV6=1 && export KDE_NO_IPV6
|
|
|
|
## Make sure KDEDIRS is set
|
|
[ -z "$KDEDIRS" ] && KDEDIRS="/usr" && export KDEDIRS
|