diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-01-06 15:43:51 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-01-06 15:43:51 -0600 |
commit | 39c9f76c1b1bf4d2db41a217c301d1f260332697 (patch) | |
tree | 3c3cb2f472b3ebe3ba5bb2e227e9902737ec9c9b /r14-xdg-update | |
parent | 4d3d2420430fb53000ceda25ae7498e49f6e94b2 (diff) | |
download | tdebase-39c9f76c1b1bf4d2db41a217c301d1f260332697.tar.gz tdebase-39c9f76c1b1bf4d2db41a217c301d1f260332697.zip |
Minor fix to r14-xdg-update script.
Diffstat (limited to 'r14-xdg-update')
-rw-r--r-- | r14-xdg-update | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/r14-xdg-update b/r14-xdg-update index 2ac4e7419..0af275409 100644 --- a/r14-xdg-update +++ b/r14-xdg-update @@ -445,7 +445,8 @@ fi # Ensure all KDED services are accounted for in the user's profile. Any that are missing # are defaulted to not auto-loading (false). Refer to bug report 1210. This same test is -# performed in the migratekde3 script. +# performed in the migratekde3 script, but notice the migratekde3 script uses the key of +# X-KDE-Kded-autoload whereas X-TDE-Kded-autoload is used here. if [ -d $PROFILE_DIR/share/services/kded ]; then if [ "`find $PROFILE_DIR/share/services/kded -name *.desktop`" != "" ]; then Message_Prefix @@ -453,7 +454,7 @@ if [ -d $PROFILE_DIR/share/services/kded ]; then for i in `/bin/ls -1 $PROFILE_DIR/share/services/kded/*.desktop`; do SERVICE_NAME=`basename $i` if [ ! -f $TDEDIR/share/services/kded/$SERVICE_NAME ]; then - $TDEDIR/bin/kwriteconfig --file $i --group "Desktop Entry" --key "X-KDE-Kded-autoload" --type bool "false" + $TDEDIR/bin/kwriteconfig --file $i --group "Desktop Entry" --key "X-TDE-Kded-autoload" --type bool "false" fi done fi |