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 | c3745173272d1cf5b0642debb40d019e7ae71094 (patch) | |
tree | daee509c9d920ccdc727dbf1254b2183bf5f64aa /build/scripts/link_exe.py | |
parent | 656921707c02b816d730f31c1fdc1d615adbfe00 (diff) | |
download | ydb-c3745173272d1cf5b0642debb40d019e7ae71094.tar.gz |
Restoring authorship annotation for <workfork@yandex-team.ru>. Commit 1 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 f469e3b442..387f3153e7 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) |