mirror of https://github.com/CGAL/cgal
Pass down $MAKEFLAGS to install_cgal when building the release.
(not yet to the test-suite as it would interfere with the current mechanism to parallelize the test-suite).
This commit is contained in:
parent
6cd197df85
commit
2e95a47ebe
|
|
@ -185,13 +185,13 @@ build_cgal_libs()
|
||||||
fi
|
fi
|
||||||
if [ "`value_of BUILD_ON_${1}`" = "all" ]; then
|
if [ "`value_of BUILD_ON_${1}`" = "all" ]; then
|
||||||
remote_command ${1} \
|
remote_command ${1} \
|
||||||
"cd ${CGAL_DIR};
|
"cd ${CGAL_DIR}; export MAKEFLAGS=${MAKEFLAGS};
|
||||||
${CGAL_DIR}/install_cgal --CGAL_DIR ${CGAL_DIR} --rebuild-all" \
|
${CGAL_DIR}/install_cgal --CGAL_DIR ${CGAL_DIR} --rebuild-all" \
|
||||||
>> ${ACTUAL_LOGFILE} 2>&1
|
>> ${ACTUAL_LOGFILE} 2>&1
|
||||||
else
|
else
|
||||||
for j in `value_of BUILD_ON_${1}`; do
|
for j in `value_of BUILD_ON_${1}`; do
|
||||||
remote_command ${1} \
|
remote_command ${1} \
|
||||||
"cd ${CGAL_DIR};
|
"cd ${CGAL_DIR}; export MAKEFLAGS=${MAKEFLAGS};
|
||||||
${CGAL_DIR}/install_cgal --CGAL_DIR ${CGAL_DIR} --rebuild ${j}" \
|
${CGAL_DIR}/install_cgal --CGAL_DIR ${CGAL_DIR} --rebuild ${j}" \
|
||||||
>> ${ACTUAL_LOGFILE} 2>&1
|
>> ${ACTUAL_LOGFILE} 2>&1
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue