]> code.ossystems Code Review - openembedded-core.git/commitdiff
package.bbclass: change RPATHs for cross-canadian binaries
authorLaurentiu Palcu <laurentiu.palcu@intel.com>
Fri, 17 Aug 2012 10:38:10 +0000 (13:38 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 17 Aug 2012 12:06:19 +0000 (13:06 +0100)
When building the meta-toolchain, the binaries didn't get relocatable
RPATHs. They were hardcoded to the default path. Hence, if one had
already installed one SDK in the default path and one in another
location, the later toolchain's binaries would search and load libraries
from the first location, ending in a "Segmentation Fault".

[YOCTO #2927]

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/package.bbclass

index d122cd9f8f2b5a74d511b3c0cff8f385751f3ce5..278f0f0ea995873c19cea857950dcfec8437b94e 100644 (file)
@@ -448,7 +448,7 @@ python perform_packagecopy () {
     subprocess.call('tar -cf - -C %s -ps . | tar -xf - -C %s' % (dest, dvar), shell=True)
 
     # replace RPATHs for the nativesdk binaries, to make them relocatable
-    if bb.data.inherits_class('nativesdk', d):
+    if bb.data.inherits_class('nativesdk', d) or bb.data.inherits_class('cross-canadian', d):
         rpath_replace (dvar, d)
 }