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
|
|
@ -116,7 +116,7 @@ put_on_web()
|
||||||
$CURL --upload-file ${1} --user anonymous:${MAIL_ADDRESS} \
|
$CURL --upload-file ${1} --user anonymous:${MAIL_ADDRESS} \
|
||||||
ftp://${FTP_SERVER}/${FTP_STORE_DIR}/${2} >> ${ACTUAL_LOGFILE} 2>&1
|
ftp://${FTP_SERVER}/${FTP_STORE_DIR}/${2} >> ${ACTUAL_LOGFILE} 2>&1
|
||||||
else
|
else
|
||||||
$FTP $FTP_OPTS $FTP_SERVER >> ${ACTUAL_LOGFILE} 2>&1 <<EOF
|
$FTP $FTP_OPTS $FTP_SERVER >> ${ACTUAL_LOGFILE} 2>&1 <<EOF
|
||||||
quote USER anonymous
|
quote USER anonymous
|
||||||
quote PASS ${MAIL_ADDRESS}
|
quote PASS ${MAIL_ADDRESS}
|
||||||
binary
|
binary
|
||||||
|
|
@ -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