diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-11-04 01:13:02 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-11-04 01:13:02 -0500 |
commit | f2d05b6e3332cf2d6488a85c3389ef9100ff580d (patch) | |
tree | afaa6e55941a771cdbfdf51424e03e94913b8040 /kpresenter | |
parent | aa0e597d69c5fee77817b37b89407137893b3baf (diff) | |
download | koffice-f2d05b6e3332cf2d6488a85c3389ef9100ff580d.tar.gz koffice-f2d05b6e3332cf2d6488a85c3389ef9100ff580d.zip |
Fix references to user profile directory.
Diffstat (limited to 'kpresenter')
-rwxr-xr-x | kpresenter/scripts/mkstandalone.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kpresenter/scripts/mkstandalone.sh b/kpresenter/scripts/mkstandalone.sh index b362ee36..fa99fe69 100755 --- a/kpresenter/scripts/mkstandalone.sh +++ b/kpresenter/scripts/mkstandalone.sh @@ -25,8 +25,8 @@ else cp -r $TDEDIR/share/apps/kstyle $out/share/apps/ mkdir -p $out/share/config cp $TDEDIR/share/config/kdebug.areas $out/share/config/ - cp ~/.kde/share/config/kdeglobals $out/share/config/ - cp ~/.kde/share/config/kpresenterrc $out/share/config/ + cp ~/.trinity/share/config/kdeglobals $out/share/config/ + cp ~/.trinity/share/config/kpresenterrc $out/share/config/ ### cp $TDEDIR/share/icons $out/share/ cp -r $TDEDIR/share/toolbar $out/share/ mkdir -p $out/share/servicetypes @@ -72,17 +72,17 @@ else cp $TDEDIR/bin/kpresenter $out/bin/ cp $TDEDIR/bin/dcopserver $out/bin/ # Take kded as well - we could copy the ksycoca file but we would have - # to install it in ~/.kde ... + # to install it in ~/.trinity ... cp $TDEDIR/bin/kded $out/bin/ ########### Startup script echo '#!/bin/sh' > $out/go.sh echo 'export TDEDIR=`pwd`' >> $out/go.sh echo 'export LD_LIBRARY_PATH=$TDEDIR/lib' >> $out/go.sh - echo 'mkdir -p ~/.kde 2>/dev/null' >> $out/go.sh - echo 'mkdir -p ~/.kde/share 2>/dev/null' >> $out/go.sh - echo 'mkdir -p ~/.kde/share/config 2>/dev/null' >> $out/go.sh - echo 'cp share/config/* ~/.kde/share/config' >> $out/go.sh + echo 'mkdir -p ~/.trinity 2>/dev/null' >> $out/go.sh + echo 'mkdir -p ~/.trinity/share 2>/dev/null' >> $out/go.sh + echo 'mkdir -p ~/.trinity/share/config 2>/dev/null' >> $out/go.sh + echo 'cp share/config/* ~/.trinity/share/config' >> $out/go.sh echo 'bin/dcopserver 2>/dev/null' >> $out/go.sh echo 'sleep 1 ; bin/kded 2>/dev/null' >> $out/go.sh echo 'sleep 1 ; bin/kpresenter $* 1>/dev/null 2>kpresenter.out &' >> $out/go.sh |