diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-09-25 21:01:20 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-12-23 02:23:29 +0100 |
commit | 9139c60da9b223575555a988bf7355caa884885b (patch) | |
tree | fb3cf5df0a6023f3ca73847e612eedacc934f29c /ubuntu/maverick/kdelibs/debian | |
parent | ece6bb12827a96e06442061d2c324deb23e1f38b (diff) | |
download | tde-packaging-9139c60da9b223575555a988bf7355caa884885b.tar.gz tde-packaging-9139c60da9b223575555a988bf7355caa884885b.zip |
Fix startup tdecmshell in administrator mode on Debian and Ubuntu
(cherry picked from commit 08239218fe4a7b455a4ae58d9ba25586ccc46e06)
Diffstat (limited to 'ubuntu/maverick/kdelibs/debian')
-rwxr-xr-x | ubuntu/maverick/kdelibs/debian/kcmshell | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ubuntu/maverick/kdelibs/debian/kcmshell b/ubuntu/maverick/kdelibs/debian/kcmshell index e8b3d2a84..64dea7e87 100755 --- a/ubuntu/maverick/kdelibs/debian/kcmshell +++ b/ubuntu/maverick/kdelibs/debian/kcmshell @@ -1,4 +1,6 @@ #!/bin/sh -export KDEDIRS=/usr/:/opt/trinity/ -/opt/trinity/bin/kcmshell.real $1 $2 $3 $4 $5 $6 $7 $8 +export XDG_CONFIG_DIRS=/opt/trinity/etc/xdg:/etc/xdg +export XDG_DATA_DIRS=/opt/trinity/share:/usr/share + +${0}.real "$@" |