Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-25 21:36:22 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-25 21:36:22 (GMT)
commitc9fa11dc5483cc571e855cf0d825944ae3d5c91c (patch)
tree4eaee0565e466448ab5565bb6620d27e491918d7 /devbot
parentbb21e74a38f31c05913cffe80fd996c48803249b (diff)
Switch to forked version of automake
This speedups make install a lot by not compiling python code. It's not necessary in our case because user has access to the installation path.
Diffstat (limited to 'devbot')
-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)