From: Waldemar Kozaczuk <
jwkoz...@gmail.com>
Committer: Waldemar Kozaczuk <
jwkoz...@gmail.com>
Branch: master
build: do not strip symlinks
Signed-off-by: Waldemar Kozaczuk <
jwkoz...@gmail.com>
---
diff --git a/scripts/manifest_common.py b/scripts/manifest_common.py
--- a/scripts/manifest_common.py
+++ b/scripts/manifest_common.py
@@ -69,7 +69,7 @@ def to_strip(filename):
ff.startswith(osvdir + "/apps")
stripped_filename = filename
- if filename.endswith(".so") and to_strip(filename):
+ if filename.endswith(".so") and not filename.startswith("->") and to_strip(filename):
stripped_filename = filename[:-3] + "-stripped.so"
if not os.path.exists(stripped_filename) \
or (os.path.getmtime(stripped_filename) < \