226ac40f22
- kde4.(sh|csh): drop QT_PLUGINS_PATH munging, kde4-config call (#498809)
16 lines
468 B
Tcsh
Executable File
16 lines
468 B
Tcsh
Executable File
## http://kde.ground.cz/tiki-index.php?page=Environment+Variables
|
|
## for possible entries here
|
|
|
|
## Make sure KDEDIRS is set
|
|
if ( ! $?KDEDIRS ) setenv KDEDIRS /usr
|
|
|
|
## When/if using prelinking, avoids use of kdeinit
|
|
if ( -f /etc/sysconfig/prelink ) then
|
|
set PRELINKING = `grep "^PRELINKING=" /etc/sysconfig/prelink | cut -d"=" -f2`
|
|
if ( "$PRELINKING" == "yes" ) then
|
|
if ( ! $?KDE_IS_PRELINKED ) setenv KDE_IS_PRELINKED 1
|
|
endif
|
|
unset PRELINKING
|
|
endif
|
|
|