From: Waldemar Kozaczuk <jwkozac...@gmail.com> Committer: Waldemar Kozaczuk <jwkozac...@gmail.com> Branch: master
build: do not strip symlinks Signed-off-by: Waldemar Kozaczuk <jwkozac...@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) < \ -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to osv-dev+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/0000000000005e8beb060b58143b%40google.com.