diff options
author | workfork <workfork@yandex-team.ru> | 2022-02-10 16:46:43 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:43 +0300 |
commit | 89db6fe2fe2c32d2a832ddfeb04e8d078e301084 (patch) | |
tree | 49e222ea1c5804306084bb3ae065bb702625360f /build/scripts/link_exe.py | |
parent | c3745173272d1cf5b0642debb40d019e7ae71094 (diff) | |
download | ydb-89db6fe2fe2c32d2a832ddfeb04e8d078e301084.tar.gz |
Restoring authorship annotation for <workfork@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'build/scripts/link_exe.py')
-rw-r--r-- | build/scripts/link_exe.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build/scripts/link_exe.py b/build/scripts/link_exe.py index 387f3153e78..f469e3b442a 100644 --- a/build/scripts/link_exe.py +++ b/build/scripts/link_exe.py @@ -1,9 +1,9 @@ -import sys -import subprocess +import sys +import subprocess import optparse - + from process_whole_archive_option import ProcessWholeArchiveOption - + def get_leaks_suppressions(cmd): supp, newcmd = [], [] @@ -57,7 +57,7 @@ def parse_args(): return parser.parse_args() -if __name__ == '__main__': +if __name__ == '__main__': opts, args = parse_args() cmd = fix_cmd(opts.musl, args) @@ -79,4 +79,4 @@ if __name__ == '__main__': stdout = sys.stdout rc = subprocess.call(cmd, shell=False, stderr=sys.stderr, stdout=stdout) - sys.exit(rc) + sys.exit(rc) |