# HG changeset patch # User Arnaud Lacombe # Date 1270658121 -7200 # Node ID 8bb8652222292c73cf9381977dbd00a5483a868c # Parent b4ce08060b6fe5db0b41eb6601f110bd0e4d2a63 cc/gcc: fix recent gcc build This fix missed conversion of CT_GCC_USE_* to CT_CC_GCC_USE_*. Signed-off-by: Arnaud Lacombe diff -r b4ce08060b6f -r 8bb865222229 scripts/build/cc/gcc.sh --- a/scripts/build/cc/gcc.sh Wed Apr 07 00:04:06 2010 +0200 +++ b/scripts/build/cc/gcc.sh Wed Apr 07 18:35:21 2010 +0200 @@ -150,11 +150,11 @@ else extra_config+=("--disable-__cxa_atexit") fi - if [ "${CT_GCC_USE_GMP_MPFR}" = "y" ]; then + if [ "${CT_CC_GCC_USE_GMP_MPFR}" = "y" ]; then extra_config+=("--with-gmp=${CT_PREFIX_DIR}") extra_config+=("--with-mpfr=${CT_PREFIX_DIR}") fi - if [ "${CT_GCC_USE_PPL_CLOOG_MPC}" = "y" ]; then + if [ "${CT_CC_GCC_USE_PPL_CLOOG_MPC}" = "y" ]; then extra_config+=("--with-ppl=${CT_PREFIX_DIR}") extra_config+=("--with-cloog=${CT_PREFIX_DIR}") extra_config+=("--with-mpc=${CT_PREFIX_DIR}") @@ -303,11 +303,11 @@ if [ -n "${CC_ENABLE_CXX_FLAGS}" ]; then extra_config+=("--enable-cxx-flags=${CC_ENABLE_CXX_FLAGS}") fi - if [ "${CT_GCC_USE_GMP_MPFR}" = "y" ]; then + if [ "${CT_CC_GCC_USE_GMP_MPFR}" = "y" ]; then extra_config+=("--with-gmp=${CT_PREFIX_DIR}") extra_config+=("--with-mpfr=${CT_PREFIX_DIR}") fi - if [ "${CT_GCC_USE_PPL_CLOOG_MPC}" = "y" ]; then + if [ "${CT_CC_GCC_USE_PPL_CLOOG_MPC}" = "y" ]; then extra_config+=("--with-ppl=${CT_PREFIX_DIR}") extra_config+=("--with-cloog=${CT_PREFIX_DIR}") extra_config+=("--with-mpc=${CT_PREFIX_DIR}")