diff options
author | Khem Raj <raj.khem@gmail.com> | 2010-07-30 13:27:03 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2010-08-03 12:46:05 -0700 |
commit | 07733978e28ec682fbabac61325fe3dc22d6dbda (patch) | |
tree | f8d4e929ada7027ead69780a888e9618d45d28fe /recipes/eglibc/eglibc-package.bbclass | |
parent | c52193ee037fe3d7c469256585ab70cb6c774ea8 (diff) |
gcc,eglibc: Use the paths for mutli-machine safe toolchain install.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Koen Kooi <k-kooi@ti.com>
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes/eglibc/eglibc-package.bbclass')
-rw-r--r-- | recipes/eglibc/eglibc-package.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/eglibc/eglibc-package.bbclass b/recipes/eglibc/eglibc-package.bbclass index 4e286afa80..a041f93ef2 100644 --- a/recipes/eglibc/eglibc-package.bbclass +++ b/recipes/eglibc/eglibc-package.bbclass @@ -170,7 +170,7 @@ do_prep_locale_tree() { done ls -d ${PKGD}${base_libdir}/* | xargs -iBLAH cp -pPR BLAH $treedir/lib if [ -f ${STAGING_DIR_NATIVE}${prefix_native}/${TARGET_SYS}/lib/libgcc_s.* ]; then - cp -pPR ${STAGING_DIR_NATIVE}${prefix_native}/${TARGET_SYS}/lib/libgcc_s.* $treedir/lib + cp -pPR ${TOOLCHAIN_PATH}/${TARGET_SYS}/lib/libgcc_s.* $treedir/lib fi install -m 0755 ${PKGD}${bindir}/localedef $treedir/bin } |