diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-12-25 08:53:17 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-12-25 08:53:39 +0100 |
commit | 48e575ce1a317ddd512e1d610fef40cf2f0f671c (patch) | |
tree | 0cb8d0931cc4bf1e4c42b438a39f0e6746a338f7 /package/python3/patches | |
parent | 9d5d00958074551d82af7edcea6fda0e49285006 (diff) |
python3: update to 3.6.4
Diffstat (limited to 'package/python3/patches')
-rw-r--r-- | package/python3/patches/patch-setup_py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/package/python3/patches/patch-setup_py b/package/python3/patches/patch-setup_py deleted file mode 100644 index bb60fb9b4..000000000 --- a/package/python3/patches/patch-setup_py +++ /dev/null @@ -1,11 +0,0 @@ ---- Python-3.6.0.orig/setup.py 2016-12-23 03:21:22.000000000 +0100 -+++ Python-3.6.0/setup.py 2017-05-10 17:22:50.000000000 +0200 -@@ -532,7 +532,7 @@ class PyBuildExt(build_ext): - for directory in reversed(options.dirs): - add_dir_to_list(dir_list, directory) - -- if os.path.normpath(sys.base_prefix) != '/usr' \ -+ if not cross_compiling and os.path.normpath(sys.base_prefix) != '/usr' \ - and not sysconfig.get_config_var('PYTHONFRAMEWORK'): - # OSX note: Don't add LIBDIR and INCLUDEDIR to building a framework - # (PYTHONFRAMEWORK is set) to avoid # linking problems when |