summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2011-06-01 10:45:33 -0400
committerRay Strode <rstrode@redhat.com>2011-06-01 10:45:33 -0400
commit3fb00af9239120383cb4f7c6d6b4c7f8e503f98a (patch)
tree1da1aee87d0bdd7bdee6d16066e92565641caba1
parentbf7b8a9caf4d2eddd1c4064296715f114a1337ec (diff)
downloadgdm-3fb00af9239120383cb4f7c6d6b4c7f8e503f98a.tar.gz
Revert "dconf: set XDG_CACHE_HOME along with XDG_CONFIG_HOME"
This reverts commit 2108fbb01143a6cfd5847e9564f0f20bce00570c. 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