From c9fa11dc5483cc571e855cf0d825944ae3d5c91c Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Tue, 25 Dec 2012 21:36:22 +0000 Subject: 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. --- (limited to 'devbot') 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) -- cgit v0.9.1