From 7f6dce5218e32f3ce3766ae34f9019dabbac8c45 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 9 Sep 2020 15:56:14 +0530 Subject: [PATCH] Fix build failure missed one isosx instance --- setup/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/build.py b/setup/build.py index 4268d19bce..17e63d121a 100644 --- a/setup/build.py +++ b/setup/build.py @@ -103,7 +103,7 @@ def is_ext_allowed(ext): only = ext.get('only', '') if only: only = set(only.split()) - q = set(filter(lambda x: globals()["is" + x], ["bsd", "freebsd", "haiku", "linux", "osx", "windows"])) + q = set(filter(lambda x: globals()["is" + x], ["bsd", "freebsd", "haiku", "linux", "macos", "windows"])) return len(q.intersection(only)) > 0 return True