summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-08-10 07:39:35 +0000
committerRichard Purdie <richard@openedhand.com>2007-08-10 07:39:35 +0000
commit0197eb2d870263b983ba217aca69ffe9f7708eb5 (patch)
tree0647fbc0dc81f6e329082572c68f6541455ce8fc
parent8f4687c84c6d540d27bf9bcbdb5360226320e3e3 (diff)
downloadopenembedded-core-0197eb2d870263b983ba217aca69ffe9f7708eb5.tar.gz
openembedded-core-0197eb2d870263b983ba217aca69ffe9f7708eb5.tar.bz2
openembedded-core-0197eb2d870263b983ba217aca69ffe9f7708eb5.tar.xz
openembedded-core-0197eb2d870263b983ba217aca69ffe9f7708eb5.zip
binutils.inc: No space is neeeded with CCACHE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2479 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r--meta/packages/binutils/binutils.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/packages/binutils/binutils.inc b/meta/packages/binutils/binutils.inc
index e0440b370..6f0b0b304 100644
--- a/meta/packages/binutils/binutils.inc
+++ b/meta/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"