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.

20 lines
731B

  1. diff -Naur Python-3.8.0-orig/Lib/distutils/cygwinccompiler.py Python-3.8.0/Lib/distutils/cygwinccompiler.py
  2. --- Python-3.8.0-orig/Lib/distutils/cygwinccompiler.py 2019-10-22 10:02:03.680054000 +0300
  3. +++ Python-3.8.0/Lib/distutils/cygwinccompiler.py 2019-10-22 10:02:16.066475700 +0300
  4. @@ -48,7 +48,6 @@
  5. import os
  6. import sys
  7. import copy
  8. -from subprocess import Popen, PIPE, check_output
  9. import re
  10. from distutils.ccompiler import gen_preprocess_options, gen_lib_options
  11. @@ -385,6 +384,7 @@
  12. executable = cmd.split()[0]
  13. if find_executable(executable) is None:
  14. return None
  15. + from subprocess import Popen, PIPE
  16. out = Popen(cmd, shell=True, stdout=PIPE).stdout
  17. try:
  18. out_string = out.read()