Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2018-08-10 19:35:42 +0300
committerRay Molenkamp <github@lazydodo.com>2018-08-10 19:37:15 +0300
commit7daf62950bb5b85dc6acb459800c854692838631 (patch)
tree5f8c00793f7bb044678c1acf5e4c4a2142cce680 /build_files/build_environment/patches
parent92217a81b59a4908811348467906e980ed774a85 (diff)
build_environment: python 3.7.0 + numpy 1.15.0
Diffstat (limited to 'build_files/build_environment/patches')
-rw-r--r--build_files/build_environment/patches/numpy.diff23
1 files changed, 0 insertions, 23 deletions
diff --git a/build_files/build_environment/patches/numpy.diff b/build_files/build_environment/patches/numpy.diff
deleted file mode 100644
index c4c57222838..00000000000
--- a/build_files/build_environment/patches/numpy.diff
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -Naur numpy-1.11.1/numpy/distutils/ccompiler.py numpy-1.11.1/numpy/distutils/ccompiler.py
---- numpy-1.11.1/numpy/distutils/ccompiler.py 2016-06-25 08:38:34 -0600
-+++ numpy-1.11.1/numpy/distutils/ccompiler.py 2016-08-04 12:33:43 -0600
-@@ -29,6 +29,7 @@
-
- # Using customized CCompiler.spawn.
- def CCompiler_spawn(self, cmd, display=None):
-+ cmd = quote_args(cmd)
- """
- Execute a command in a sub-process.
-
-diff -Naur numpy-1.11.1/numpy/distutils/misc_util.py numpy-1.11.1/numpy/distutils/misc_util.py
---- numpy-1.11.1/numpy/distutils/misc_util.py 2016-06-25 08:38:34 -0600
-+++ numpy-1.11.1/numpy/distutils/misc_util.py 2016-08-04 12:34:56 -0600
-@@ -116,7 +116,7 @@
- args = list(args)
- for i in range(len(args)):
- a = args[i]
-- if ' ' in a and a[0] not in '"\'':
-+ if ' ' in a and a[0] not in '"\'' and a[len(a)-1] not in '"\'':
- args[i] = '"%s"' % (a)
- return args
-