Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-24 19:05:43 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-24 19:05:43 (GMT)
commit4fa00443aaddf11a6c2f136440c94461f06f17b0 (patch)
tree580bd5ceba4e8515e603269759c6b4baed431a95
parent4abdc6295f983d5dc9bee8686ae7c3a744f750ac (diff)
Point XDG_CONFIG_DIRS to the right path
-rw-r--r--devbot/environ.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/devbot/environ.py b/devbot/environ.py
index 916c7a8..9130984 100644
--- a/devbot/environ.py
+++ b/devbot/environ.py
@@ -43,8 +43,8 @@ def setup_variables():
add_path("XDG_DATA_DIRS", "/usr/share")
add_path("XDG_DATA_DIRS", config.share_dir)
- add_path("XDG_CONFIG_DIRS", "/etc")
- add_path("XDG_CONFIG_DIRS", config.etc_dir)
+ add_path("XDG_CONFIG_DIRS", "/etc/xdg")
+ add_path("XDG_CONFIG_DIRS", os.path.join(config.etc_dir, "xdg"))
for system_lib_dir in config.system_lib_dirs:
modules_path = os.path.join(system_lib_dir, "gio", "modules")