summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/relocatable.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/relocatable.bbclass b/meta/classes/relocatable.bbclass
index 072f533f4f..7bbfe32d9f 100644
--- a/meta/classes/relocatable.bbclass
+++ b/meta/classes/relocatable.bbclass
@@ -50,8 +50,9 @@ def process_dir (directory, d):
50 rpaths = curr_rpath.split(":") 50 rpaths = curr_rpath.split(":")
51 new_rpaths = [] 51 new_rpaths = []
52 for rpath in rpaths: 52 for rpath in rpaths:
53 # If rpath is already dynamic continue 53 # If rpath is already dynamic copy it to new_rpath and continue
54 if rpath.find("$ORIGIN") != -1: 54 if rpath.find("$ORIGIN") != -1:
55 new_rpaths.append(rpath.strip())
55 continue 56 continue
56 # If the rpath shares a root with base_prefix determine a new dynamic rpath from the 57 # If the rpath shares a root with base_prefix determine a new dynamic rpath from the
57 # base_prefix shared root 58 # base_prefix shared root