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.

12 lines
309B

  1. --- Python-3.8.1/Lib/pathlib.py.orig 2019-12-18 18:21:23.000000000 +0100
  2. +++ Python-3.8.1/Lib/pathlib.py 2019-12-23 11:17:46.731915100 +0100
  3. @@ -122,6 +122,8 @@
  4. sep = '\\'
  5. altsep = '/'
  6. + if 'MSYSTEM' in os.environ:
  7. + sep, altsep = altsep, sep
  8. has_drv = True
  9. pathmod = ntpath