summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/toolchain-scripts.bbclass8
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