Cross-Platform build scripts for audio plugins
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
765B

  1. --- sip-4.19.12/configure.py.orig 2018-07-11 08:04:25.493353200 +0300
  2. +++ sip-4.19.12/configure.py 2018-07-11 08:05:49.180700000 +0300
  3. @@ -278,12 +278,16 @@
  4. """
  5. siputils.inform("Creating %s..." % module)
  6. + sip_inst_exe = os.path.join(sip_bin_dir, "sip")
  7. + if sys.platform == 'win32':
  8. + sip_inst_exe += '.exe'
  9. +
  10. content = {
  11. "sip_config_args": sys.argv[1:],
  12. "sip_version": sip_version,
  13. "sip_version_str": sip_version_str,
  14. "platform": build_platform,
  15. - "sip_bin": os.path.join(sip_bin_dir, "sip"),
  16. + "sip_bin": sip_inst_exe,
  17. "sip_inc_dir": sip_inc_dir,
  18. "sip_root_dir": sip_root_dir,
  19. "sip_module_dir": sip_module_dir,