From: Richard Purdie Date: Fri, 10 Aug 2007 08:03:27 +0000 (+0000) Subject: binutils.inc: CCACHE variable already includes the space (two spaces upsets binutils... X-Git-Tag: Release-2010-05/1~9062^2^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d085b399f7ff3e92c294ea4f50f61aa4cd1f8c4;p=openembedded.git binutils.inc: CCACHE variable already includes the space (two spaces upsets binutils configure (from poky) --- diff --git a/packages/binutils/binutils.inc b/packages/binutils/binutils.inc index 007089761d..684cf54b8e 100644 --- a/packages/binutils/binutils.inc +++ b/packages/binutils/binutils.inc @@ -56,14 +56,14 @@ export LD_FOR_TARGET = "${TARGET_PREFIX}ld" export NM_FOR_TARGET = "${TARGET_PREFIX}nm" export RANLIB_FOR_TARGET = "${TARGET_PREFIX}ranlib" -export CC_FOR_HOST = "${CCACHE} ${HOST_PREFIX}gcc ${HOST_CC_ARCH}" -export CXX_FOR_HOST = "${CCACHE} ${HOST_PREFIX}gcc ${HOST_CC_ARCH}" +export CC_FOR_HOST = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}" +export CXX_FOR_HOST = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}" export CC_FOR_BUILD = "${BUILD_CC}" export CPP_FOR_BUILD = "${BUILD_CPP}" export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}" -export CC = "${CCACHE} ${HOST_PREFIX}gcc ${HOST_CC_ARCH}" +export CC = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}" do_configure () { (cd ${S}; gnu-configize) || die "Failed to run gnu-configize"