Remove the - between ${TARGET_PREFIX} and ar/nm for the env script, as this will...
authorMartin Ertsaas <mertsas@cisco.com>
Thu, 19 Jul 2012 10:00:51 +0000 (12:00 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 19 Jul 2012 10:17:58 +0000 (11:17 +0100)
(From OE-Core rev: 6434fc102e73ed81d2092e4c4ba5f9fb806545c8)

Signed-off-by: Martin Ertsaas <mertsas@cisco.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/toolchain-scripts.bbclass

index e5e5e96..442db14 100644 (file)
@@ -68,8 +68,8 @@ toolchain_create_tree_env_script () {
        echo 'export RANLIB=${TARGET_PREFIX}ranlib' >> $script
        echo 'export OBJCOPY=${TARGET_PREFIX}objcopy' >> $script
        echo 'export OBJDUMP=${TARGET_PREFIX}objdump' >> $script
-       echo 'export AR=${TARGET_PREFIX}-ar' >> $script
-       echo 'export NM=${TARGET_PREFIX}-nm' >> $script
+       echo 'export AR=${TARGET_PREFIX}ar' >> $script
+       echo 'export NM=${TARGET_PREFIX}nm' >> $script
        echo 'export TARGET_PREFIX=${TARGET_PREFIX}' >> $script
        echo 'export CONFIGURE_FLAGS="--target=${TARGET_SYS} --host=${TARGET_SYS} --build=${BUILD_SYS} --with-libtool-sysroot=${STAGING_DIR_TARGET}"' >> $script
        if [ "${TARGET_OS}" = "darwin8" ]; then