summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2016-10-30 11:49:48 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2016-10-30 11:52:26 +0100
commit2518708582b50ed79c60c68ad1eae46a92a3fb10 (patch)
treefc70c483345eace95944cf03df4bbffa9e2cd674
parentdf785d5861f601ec829f4ab1f40e259c8b4b42d4 (diff)
downloadptxdist-2518708582b50ed79c60c68ad1eae46a92a3fb10.tar.gz
ptxdist-2518708582b50ed79c60c68ad1eae46a92a3fb10.tar.xz
ptxd_make_world_init: never use icecc during the prepare stage
Only shore test programs are compiled here. So just do this locally and avoid the overhead from calling icecc first. This can speed up the prepare stage significantly. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--scripts/lib/ptxd_make_world_common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/ptxd_make_world_common.sh b/scripts/lib/ptxd_make_world_common.sh
index ffc856d2f..c99500b8e 100644
--- a/scripts/lib/ptxd_make_world_common.sh
+++ b/scripts/lib/ptxd_make_world_common.sh
@@ -303,7 +303,7 @@ ptxd_make_world_init() {
local conf_env_ptr="ptx_conf_env_${pkg_type}"
pkg_conf_opt="${pkg_conf_opt:-${!conf_opt_ptr}}"
- pkg_conf_env="${pkg_conf_env:-${!conf_env_ptr}}"
+ pkg_conf_env="PTXDIST_ICECC= ${pkg_conf_env:-${!conf_env_ptr}}"
unset conf_opt_ptr conf_env_ptr
;;