diff --git a/build.py b/build.py index 7b82c18..9c928dd 100755 --- a/build.py +++ b/build.py @@ -287,12 +287,12 @@ def libs(clean, static, shared, skip_formatter, just_release): if shared: build_lib('win32-dynamic', generator32, dynamic_options, just_release) build_lib('win64-dynamic', generator64, dynamic_options, just_release) - elif PLATFORM == 'osx': + if PLATFORM == 'osx': if static: build_lib('osx-static', None, static_options, just_release) if shared: build_lib('osx-dynamic', None, dynamic_options, just_release) - elif PLATFORM == 'linux': + if PLATFORM == 'linux': if static: build_lib('linux-static', None, static_options, just_release) if shared: