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.

13 lines
556B

  1. diff -Naur Python-3.8.0-orig/Lib/compileall.py Python-3.8.0/Lib/compileall.py
  2. --- Python-3.8.0-orig/Lib/compileall.py 2019-10-14 16:34:47.000000000 +0300
  3. +++ Python-3.8.0/Lib/compileall.py 2019-10-22 10:03:15.206179600 +0300
  4. @@ -36,6 +36,8 @@
  5. if name == '__pycache__':
  6. continue
  7. fullname = os.path.join(dir, name)
  8. + if sys.platform == "win32" and sys.version.find("GCC") >= 0:
  9. + fullname = fullname.replace('\\','/')
  10. if ddir is not None:
  11. dfile = os.path.join(ddir, name)
  12. else: