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.

15 lines
601B

  1. --- Python-3.8.0/Lib/importlib/_bootstrap_external.py.orig 2019-12-21 14:31:23.806479400 +0100
  2. +++ Python-3.8.0/Lib/importlib/_bootstrap_external.py 2019-12-21 14:34:37.093867400 +0100
  3. @@ -1603,6 +1603,11 @@
  4. continue
  5. else:
  6. raise ImportError('importlib requires posix or nt')
  7. +
  8. + if 'MSYSTEM' in os_module.environ:
  9. + path_separators = path_separators[::-1]
  10. + path_sep = path_separators[0]
  11. +
  12. setattr(self_module, '_os', os_module)
  13. setattr(self_module, 'path_sep', path_sep)
  14. setattr(self_module, 'path_separators', ''.join(path_separators))