diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2011-08-04 13:54:59 -0500 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2011-08-06 13:40:44 -0700 |
commit | cfcc282efef30ea1988ccbe14835254a999584ea (patch) | |
tree | 1223820e1f1e3114777acaedfae8fb48bd0e4bde /meta/recipes-devtools | |
parent | 7a278238d9b08e0315e92d386282cb488cc0c7b4 (diff) | |
download | openembedded-core-cfcc282efef30ea1988ccbe14835254a999584ea.tar.gz openembedded-core-cfcc282efef30ea1988ccbe14835254a999584ea.tar.bz2 openembedded-core-cfcc282efef30ea1988ccbe14835254a999584ea.zip |
gcc: use ${base_lib} to match gcc default configuration
Rather than tweaking MULTILIB_DIRNAMES & MULTILIB_OSDIRNAMES like is
done for x86-64 via 64bithack.patch. We can just go with gcc defaults
and utilize ${base_lib} for where to find gcc libs.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross-intermediate.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc b/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc index df5958ac77..7b1bb3861b 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc +++ b/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc @@ -34,7 +34,7 @@ do_compile () { do_install () { oe_runmake 'DESTDIR=${D}' install install -d ${D}${target_base_libdir}/ - mv ${D}${exec_prefix}/${TARGET_SYS}/lib/* ${D}${target_base_libdir}/ + mv ${D}${exec_prefix}/${TARGET_SYS}/${baselib}/* ${D}${target_base_libdir}/ # We don't really need this (here shares/ contains man/, info/, locale/). rm -rf ${D}${datadir}/ |