Debian stretch / kde plasma5 fix: KDEDIRS -> XDG_CONFIG_DIRS

https://phabricator.whonix.org/T633
This commit is contained in:
Patrick Schleizer 2017-02-15 20:46:22 +00:00
parent bddbba84a6
commit c59d15d48f
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -1,8 +1,8 @@
## Copyright (C) 2012 - 2014 Patrick Schleizer <adrelanos@riseup.net>
## See the file COPYING for copying conditions.
if [ -z "$KDEDIRS" ]; then
export KDEDIRS=/usr/share/security-misc/
if [ -z "$XDG_CONFIG_DIRS" ]; then
export XDG_CONFIG_DIRS=/usr/share/security-misc/
else
export KDEDIRS=/usr/share/security-misc/:$KDEDIRS
export XDG_CONFIG_DIRS=/usr/share/security-misc/:$XDG_CONFIG_DIRS
fi