summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/package.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index d122cd9f8f..278f0f0ea9 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -448,7 +448,7 @@ python perform_packagecopy () {
448 subprocess.call('tar -cf - -C %s -ps . | tar -xf - -C %s' % (dest, dvar), shell=True) 448 subprocess.call('tar -cf - -C %s -ps . | tar -xf - -C %s' % (dest, dvar), shell=True)
449 449
450 # replace RPATHs for the nativesdk binaries, to make them relocatable 450 # replace RPATHs for the nativesdk binaries, to make them relocatable
451 if bb.data.inherits_class('nativesdk', d): 451 if bb.data.inherits_class('nativesdk', d) or bb.data.inherits_class('cross-canadian', d):
452 rpath_replace (dvar, d) 452 rpath_replace (dvar, d)
453} 453}
454 454