From 4fa00443aaddf11a6c2f136440c94461f06f17b0 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Thu, 24 Jan 2013 19:05:43 +0000 Subject: Point XDG_CONFIG_DIRS to the right path --- 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") -- cgit v0.9.1