summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2011-06-01 10:49:18 -0400
committerRay Strode <rstrode@redhat.com>2011-06-01 10:49:18 -0400
commitc820ecd211396c50b44d418b85c6510cad69b373 (patch)
tree3195ef0b0844ff3d199abdbedc429d68518e13fe
parentc430534e79114db36d4b5f1a19a39648c6d324d5 (diff)
downloadgdm-c820ecd211396c50b44d418b85c6510cad69b373.tar.gz
Revert "dconf: set XDG_CACHE_HOME along with XDG_CONFIG_HOME"
This reverts commit 0b34e0e1414dd5f51329f31b199e21d9fc6824a7. It was wrong. dconf uses both XDG_CACHE_HOME and XDG_CONFIG_HOME. They both need to exist and be distinct.
-rwxr-xr-xdata/make-dconf-override-db.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/data/make-dconf-override-db.sh b/data/make-dconf-override-db.sh
index acffbfa4..8f4dc6d5 100755
--- a/data/make-dconf-override-db.sh
+++ b/data/make-dconf-override-db.sh
@@ -3,7 +3,6 @@
set -e
export XDG_CONFIG_HOME=$(mktemp -d --tmpdir="$PWD")
-export XDG_CACHE_HOME="$XDG_CONFIG_HOME"
eval `dbus-launch --sh-syntax`
trap 'rm -rf $XDG_CONFIG_HOME; kill $DBUS_SESSION_BUS_PID' ERR