We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0c1f59 commit 0aaebd8Copy full SHA for 0aaebd8
configure.py
@@ -433,7 +433,7 @@ def create_makefiles(macros):
433
# The implied code generator installs.
434
if not opts.no_tools:
435
sip_dir, sip_exe = os.path.split(cfg.sip_bin)
436
- if sys.platform == 'win32':
+ if sys.platform in ("win32", "os2knix"):
437
sip_exe += '.exe'
438
439
all_installs.append((sip_exe, sip_dir))
@@ -449,6 +449,8 @@ def create_makefiles(macros):
449
if not opts.no_module:
450
if sys.platform == 'win32':
451
mod = 'sip.lib' if opts.static else 'sip.pyd'
452
+ elif sys.platform == 'os2knix':
453
+ mod = 'sip.a' if opts.static else 'sip.pyd'
454
else:
455
mod = 'libsip.a' if opts.static else 'sip.so'
456
0 commit comments