summaryrefslogtreecommitdiffstats
path: root/meta/classes/package.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/package.bbclass')
-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 ef80e505b2..5a84255666 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -907,7 +907,7 @@ python split_and_strip_files () {
907 continue 907 continue
908 # Check its an excutable 908 # Check its an excutable
909 if (s[stat.ST_MODE] & stat.S_IXUSR) or (s[stat.ST_MODE] & stat.S_IXGRP) or (s[stat.ST_MODE] & stat.S_IXOTH) \ 909 if (s[stat.ST_MODE] & stat.S_IXUSR) or (s[stat.ST_MODE] & stat.S_IXGRP) or (s[stat.ST_MODE] & stat.S_IXOTH) \
910 or ((file.startswith(libdir) or file.startswith(baselibdir)) and ".so" in f): 910 or ((file.startswith(libdir) or file.startswith(baselibdir)) and (".so" in f or ".node" in f)):
911 # If it's a symlink, and points to an ELF file, we capture the readlink target 911 # If it's a symlink, and points to an ELF file, we capture the readlink target
912 if cpath.islink(file): 912 if cpath.islink(file):
913 target = os.readlink(file) 913 target = os.readlink(file)