We need to build libiberty before gcc only in the canadian case, not the opposite.

This commit is contained in:
Yann E. MORIN" 2007-05-24 17:49:24 +00:00
parent ed8b7c0bab
commit 814e303c3c
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ do_cc_core() {
--disable-shared \
${CT_CC_CORE_EXTRA_CONFIG} 2>&1 |CT_DoLog ALL
if [ ! "${CT_CANADIAN}" = "y" ]; then
if [ "${CT_CANADIAN}" = "y" ]; then
CT_DoLog EXTRA "Building libiberty"
make ${PARALLELMFLAGS} all-build-libiberty 2>&1 |CT_DoLog ALL
fi

View File

@ -82,7 +82,7 @@ do_cc() {
--enable-long-long \
${CT_CC_EXTRA_CONFIG} 2>&1 |CT_DoLog ALL
if [ ! "${CT_CANADIAN}" = "y" ]; then
if [ "${CT_CANADIAN}" = "y" ]; then
CT_DoLog EXTRA "Building libiberty"
make ${PARALLELMFLAGS} all-build-libiberty 2>&1 |CT_DoLog ALL
fi