Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/environ.py
diff options
context:
space:
mode:
Diffstat (limited to 'devbot/environ.py')
-rw-r--r--devbot/environ.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/devbot/environ.py b/devbot/environ.py
index a2a2a5b..e90b174 100644
--- a/devbot/environ.py
+++ b/devbot/environ.py
@@ -25,8 +25,6 @@ def _setup_variables():
add_path("LD_LIBRARY_PATH", config.lib_dir)
add_path("PATH", config.bin_dir)
- add_path("ACLOCAL_PATH",
- os.path.join(config.share_dir, "aclocal"))
add_path("XCURSOR_PATH",
os.path.join(config.share_dir, "icons"))
add_path("PKG_CONFIG_PATH",
@@ -41,6 +39,9 @@ def _setup_variables():
add_path("PYTHONPATH",
os.path.dirname(os.path.dirname(__file__)))
+ add_path("ACLOCAL_PATH", "/usr/share/aclocal")
+ add_path("ACLOCAL_FLAGS", "-I /usr/share/aclocal")
+
add_path("XDG_DATA_DIRS", "/usr/share")
add_path("XDG_DATA_DIRS", config.share_dir)