Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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")