kdelibs/kde4-QT_PLUGIN_PATH.csh
Rex Dieter db6b40a670 * Tue May 12 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.2.3-3
- kde4.(sh|csh): drop QT_PLUGINS_PATH munging, kde4-config call (#498809)
2009-05-12 15:49:36 +00:00

14 lines
412 B
Tcsh
Executable File

## handled in startkde, but this sets for other DE's too
if ( $?QT_PLUGIN_PATH ) then
# set KDE4_QTPLUGINS=`kde4-config --path qtplugins`
set KDE4_QTPLUGINS="/usr/lib64/kde4/plugins:/usr/lib/kde4/plugins"
if ( "$QT_PLUGIN_PATH" !~ *"${KDE4_QTPLUGINS}"* ) then
setenv QT_PLUGIN_PATH ${QT_PLUGIN_PATH}:${KDE4_QTPLUGINS}
endif
else
setenv QT_PLUGIN_PATH ${KDE4_QTPLUGINS}
endif
unset KDE4_QTPLUGINS