Add buildlog to install.log, even in case of success.

This commit is contained in:
Michael Hoffmann 2006-04-19 15:19:15 +00:00
parent 8ee5947341
commit f75c90a48a
1 changed files with 4 additions and 1 deletions

View File

@ -4161,6 +4161,9 @@ _do_compile()
if make ${MAKE_OPTION} >"${COMPILE_LOGFILE}" 2>&1; then
log_print "Compilation of $1 $2 ${_libname} succeeded."
log_print "vvvvvvvvvvvv build log for $1 $2 shown below vvvvvvvvvvvv"
eval ${_cat} \"${COMPILE_LOGFILE}\" ${INSTALL_LOGFILE_REDIRECTION}
log_print "^^^^^^^^^^^^ build log for $1 $2 shown above ^^^^^^^^^^^^"
${_printf} "%s\n" " done."
ANY_LIB_COMPILED='y'
return 0