]> code.ossystems Code Review - openembedded-core.git/commitdiff
binutils.inc: No space is neeeded with CCACHE
authorRichard Purdie <richard@openedhand.com>
Fri, 10 Aug 2007 07:39:35 +0000 (07:39 +0000)
committerRichard Purdie <richard@openedhand.com>
Fri, 10 Aug 2007 07:39:35 +0000 (07:39 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2479 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/packages/binutils/binutils.inc

index e0440b370a29538748cd95f4350417c22fa58f4b..6f0b0b3040761e54cff750c8ce0b61b2e8ffccfa 100644 (file)
@@ -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"