From a4687da85e1ce9bda4400e98311b228cf303369f Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 30 May 2023 16:18:13 +0200 Subject: [PATCH] gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms --- Tools/build/stable_abi.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tools/build/stable_abi.py b/Tools/build/stable_abi.py index 88db93e935e9be..42b2dd92307bbf 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')