more unnecessary elif

This commit is contained in:
William L 2018-08-08 03:55:58 -07:00 committed by GitHub
parent 153bbe1d19
commit c9597e5981
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -287,12 +287,12 @@ def libs(clean, static, shared, skip_formatter, just_release):
if shared: if shared:
build_lib('win32-dynamic', generator32, dynamic_options, just_release) build_lib('win32-dynamic', generator32, dynamic_options, just_release)
build_lib('win64-dynamic', generator64, dynamic_options, just_release) build_lib('win64-dynamic', generator64, dynamic_options, just_release)
elif PLATFORM == 'osx': if PLATFORM == 'osx':
if static: if static:
build_lib('osx-static', None, static_options, just_release) build_lib('osx-static', None, static_options, just_release)
if shared: if shared:
build_lib('osx-dynamic', None, dynamic_options, just_release) build_lib('osx-dynamic', None, dynamic_options, just_release)
elif PLATFORM == 'linux': if PLATFORM == 'linux':
if static: if static:
build_lib('linux-static', None, static_options, just_release) build_lib('linux-static', None, static_options, just_release)
if shared: if shared: