diff options
author | pg <[email protected]> | 2025-06-25 11:04:54 +0300 |
---|---|---|
committer | pg <[email protected]> | 2025-06-25 11:43:11 +0300 |
commit | b55241a32a513cefebe8f89003917ec3f1ef6232 (patch) | |
tree | 2614b308c0144cce1a06c42260e8f093143fa3e4 | |
parent | 7dff50ae6cd121950e4225dfe6395e44947263ae (diff) |
fix for open source ya bootstrap
commit_hash:ec6ba2e05f229b6e822bc6337d1ce80451217ab1
-rw-r--r-- | contrib/libs/openssl/ar.pyplugin | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/libs/openssl/ar.pyplugin b/contrib/libs/openssl/ar.pyplugin index a778d066fa3..89d31f6b70e 100644 --- a/contrib/libs/openssl/ar.pyplugin +++ b/contrib/libs/openssl/ar.pyplugin @@ -54,6 +54,9 @@ def gen_renames(p, d): def rename_syms(where, ret): p = 'v1_' + if where == '/': + where = '' + # find symbols to rename syms = run(where + 'llvm-nm', '--extern-only', '--defined-only', '-A', ret) |