diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-19 11:42:07 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-19 11:44:16 +0100 |
commit | 7b2c67874e03bc378c6def5cf1558238134e1b61 (patch) | |
tree | 4b994e176f68e3fae9bb9e6f2b05db085905a677 | |
parent | 1063f45612bbad0347efe2013d61d3d5edaba1f0 (diff) | |
download | poky-7b2c67874e03bc378c6def5cf1558238134e1b61.tar.gz |
toolchain-scripts: Remove extra - from ar/nm command names
TARGET_PREFIX already has the dash included.
(From OE-Core rev: ca30b6587841f5e9a42aaedb8e0b89ff5a4a6a37)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/toolchain-scripts.bbclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/toolchain-scripts.bbclass b/meta/classes/toolchain-scripts.bbclass index 442db14a88..44284c393a 100644 --- a/meta/classes/toolchain-scripts.bbclass +++ b/meta/classes/toolchain-scripts.bbclass | |||
@@ -24,8 +24,8 @@ toolchain_create_sdk_env_script () { | |||
24 | echo 'export RANLIB=${TARGET_PREFIX}ranlib' >> $script | 24 | echo 'export RANLIB=${TARGET_PREFIX}ranlib' >> $script |
25 | echo 'export OBJCOPY=${TARGET_PREFIX}objcopy' >> $script | 25 | echo 'export OBJCOPY=${TARGET_PREFIX}objcopy' >> $script |
26 | echo 'export OBJDUMP=${TARGET_PREFIX}objdump' >> $script | 26 | echo 'export OBJDUMP=${TARGET_PREFIX}objdump' >> $script |
27 | echo 'export AR=${TARGET_PREFIX}-ar' >> $script | 27 | echo 'export AR=${TARGET_PREFIX}ar' >> $script |
28 | echo 'export NM=${TARGET_PREFIX}-nm' >> $script | 28 | echo 'export NM=${TARGET_PREFIX}nm' >> $script |
29 | echo 'export TARGET_PREFIX=${TARGET_PREFIX}' >> $script | 29 | echo 'export TARGET_PREFIX=${TARGET_PREFIX}' >> $script |
30 | echo 'export CONFIGURE_FLAGS="--target=${TARGET_SYS} --host=${TARGET_SYS} --build=${SDK_ARCH}-linux --with-libtool-sysroot=${SDKTARGETSYSROOT}"' >> $script | 30 | echo 'export CONFIGURE_FLAGS="--target=${TARGET_SYS} --host=${TARGET_SYS} --build=${SDK_ARCH}-linux --with-libtool-sysroot=${SDKTARGETSYSROOT}"' >> $script |
31 | if [ "${TARGET_OS}" = "darwin8" ]; then | 31 | if [ "${TARGET_OS}" = "darwin8" ]; then |
@@ -111,8 +111,8 @@ toolchain_create_sdk_env_script_for_installer () { | |||
111 | echo 'export RANLIB=${TARGET_PREFIX}ranlib' >> $script | 111 | echo 'export RANLIB=${TARGET_PREFIX}ranlib' >> $script |
112 | echo 'export OBJCOPY=${TARGET_PREFIX}objcopy' >> $script | 112 | echo 'export OBJCOPY=${TARGET_PREFIX}objcopy' >> $script |
113 | echo 'export OBJDUMP=${TARGET_PREFIX}objdump' >> $script | 113 | echo 'export OBJDUMP=${TARGET_PREFIX}objdump' >> $script |
114 | echo 'export AR=${TARGET_PREFIX}-ar' >> $script | 114 | echo 'export AR=${TARGET_PREFIX}ar' >> $script |
115 | echo 'export NM=${TARGET_PREFIX}-nm' >> $script | 115 | echo 'export NM=${TARGET_PREFIX}nm' >> $script |
116 | echo 'export TARGET_PREFIX=${TARGET_PREFIX}' >> $script | 116 | echo 'export TARGET_PREFIX=${TARGET_PREFIX}' >> $script |
117 | echo 'export CONFIGURE_FLAGS="--target=${TARGET_SYS} --host=${TARGET_SYS} --build=${SDK_ARCH}-linux --with-libtool-sysroot=##SDKTARGETSYSROOT##"' >> $script | 117 | echo 'export CONFIGURE_FLAGS="--target=${TARGET_SYS} --host=${TARGET_SYS} --build=${SDK_ARCH}-linux --with-libtool-sysroot=##SDKTARGETSYSROOT##"' >> $script |
118 | if [ "${TARGET_OS}" = "darwin8" ]; then | 118 | if [ "${TARGET_OS}" = "darwin8" ]; then |