diff --git a/scripts/gensyms.py b/scripts/gensyms.py index e9d376f..076f865 100644 --- a/scripts/gensyms.py +++ b/scripts/gensyms.py @@ -37,5 +37,5 @@ def find_symbols(*wrapper_names: str) -> List[str]: sys.stdout.write("{\n global:" + exported + "\n local: *;\n};\n") elif ACTION == '--ldscript': symbols = find_symbols('WRAP_SYM') - lines = map(lambda s: f'PROVIDE({s} = ip2unix_wrap_{s});', symbols) + lines = map(lambda s: f'{s} = ip2unix_wrap_{s};', symbols) sys.stdout.write("\n".join(lines) + "\n")