commit | 0656d23d82cd5b88e578a26c65dd4a64414c833b | [log] [tgz] |
---|---|---|
author | Petr Viktorin <encukou@gmail.com> | Tue May 30 17:45:56 2023 +0200 |
committer | GitHub <noreply@github.com> | Tue May 30 17:45:56 2023 +0200 |
tree | f3f4f66d7d31f881779406ad0ff7e329b40dd356 | |
parent | b7aadb4583b040ddc8564896b91f4e5e571c82d6 [diff] |
gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms (GH-105092)
diff --git a/Tools/build/stable_abi.py b/Tools/build/stable_abi.py index 88db93e..42b2dd9 100644 --- a/Tools/build/stable_abi.py +++ b/Tools/build/stable_abi.py
@@ -684,7 +684,8 @@ def main(): if args.all: run_all_generators = True - args.unixy_check = True + if UNIXY: + args.unixy_check = True try: file = args.file.open('rb')