Fix installation of manuals for binutils

It was running 'make gas ld ...', which was succeeding, but didn't install
anything.

Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
Alexey Neyman 2017-01-29 11:38:38 -08:00
parent 6c9e949ae3
commit bd318e886b

View File

@ -246,8 +246,8 @@ do_binutils_backend() {
if [ "${CT_BINUTILS_LINKER_GOLD}" = "y" ]; then
manuals_for+=( gold )
fi
manuals_install=( "${manuals_for[@]/\#/install-pdf-}" )
manuals_install+=( "${manuals_for[@]/\#/install-html-}" )
manuals_install=( "${manuals_for[@]/#/install-pdf-}" )
manuals_install+=( "${manuals_for[@]/#/install-html-}" )
CT_DoExecLog ALL make ${JOBSFLAGS} pdf html
CT_DoExecLog ALL make "${manuals_install[@]}"
fi