Ping
> -----Original Message----- > From: Alexandru-Cezar Sardan [mailto:[email protected]] > Sent: Wednesday, April 09, 2014 6:01 PM > To: [email protected] > Cc: Saul Wold; Sardan Alexandru Cezar-B41700 > Subject: [PATCH] libgcc: Use TARGET_VENDOR_virtclass-multilib for symlink > src calculation > > When defining a symlink for the multilib location based on > MULTILIB_VARIANTS, > use TARGET_VENDOR_virtclass-multilib to get the vendor, as hardcoding > the value with TARGET_VENDOR + 'ml' + mlvariant may not corespond with > the actual directory where the libs are installed. > > Signed-off-by: Alexandru-Cezar Sardan <[email protected]> > --- > meta/recipes-devtools/gcc/libgcc.inc | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/meta/recipes-devtools/gcc/libgcc.inc b/meta/recipes- > devtools/gcc/libgcc.inc > index 96f1969..eb7a6e8 100644 > --- a/meta/recipes-devtools/gcc/libgcc.inc > +++ b/meta/recipes-devtools/gcc/libgcc.inc > @@ -131,8 +131,8 @@ python do_multilib_install() { > if not tune_bitness: > tune_bitness = '32' # /lib => 32bit lib > > - src = '../../../' + tune_baselib + '/' + \ > - tune_arch + d.getVar('TARGET_VENDOR', True) + 'ml' + ml + \ > + vendor = d.getVar('TARGET_VENDOR_virtclass-multilib' + '-' + ml, > True) > + src = '../../../' + tune_baselib + '/' + tune_arch + vendor + \ > '-' + d.getVar('TARGET_OS', True) + '/' + binv + '/' > > dest = d.getVar('D', True) + d.getVar('libdir', True) + '/' + \ > -- > 1.7.9.5 > -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
