summaryrefslogtreecommitdiff
path: root/dev-python/numpy-python2/files/numpy-1.16.5-setup.py-install-skip-build-fails.patch
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-01-31 17:22:00 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-01-31 17:22:00 +0000
commit0b2cc5b601d59959a241af1cef4b0926f0833020 (patch)
treea6fcbc71c3c58ddf0522ceb47ae7a83166f04b52 /dev-python/numpy-python2/files/numpy-1.16.5-setup.py-install-skip-build-fails.patch
parent865e7c7d85735ed07592f402d89b7569a6685387 (diff)
downloadbaldeagleos-repo-0b2cc5b601d59959a241af1cef4b0926f0833020.tar.gz
baldeagleos-repo-0b2cc5b601d59959a241af1cef4b0926f0833020.tar.xz
baldeagleos-repo-0b2cc5b601d59959a241af1cef4b0926f0833020.zip
Updating liguros repo
Diffstat (limited to 'dev-python/numpy-python2/files/numpy-1.16.5-setup.py-install-skip-build-fails.patch')
-rw-r--r--dev-python/numpy-python2/files/numpy-1.16.5-setup.py-install-skip-build-fails.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-python/numpy-python2/files/numpy-1.16.5-setup.py-install-skip-build-fails.patch b/dev-python/numpy-python2/files/numpy-1.16.5-setup.py-install-skip-build-fails.patch
deleted file mode 100644
index aa141de27f48..000000000000
--- a/dev-python/numpy-python2/files/numpy-1.16.5-setup.py-install-skip-build-fails.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From b8e741c66f71071c3406e592e1537570731bcb35 Mon Sep 17 00:00:00 2001
-From: mattip <matti.picus@gmail.com>
-Date: Sun, 26 May 2019 08:55:53 +0300
-Subject: [PATCH] BUG: setup.py install --skip-build fails
-
----
- numpy/distutils/command/install_clib.py | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/numpy/distutils/command/install_clib.py b/numpy/distutils/command/install_clib.py
-index 662aa00bda9..6a73f7e3308 100644
---- a/numpy/distutils/command/install_clib.py
-+++ b/numpy/distutils/command/install_clib.py
-@@ -19,6 +19,9 @@ def finalize_options(self):
-
- def run (self):
- build_clib_cmd = get_cmd("build_clib")
-+ if not build_clib_cmd.build_clib:
-+ # can happen if the user specified `--skip-build`
-+ build_clib_cmd.finalize_options()
- build_dir = build_clib_cmd.build_clib
-
- # We need the compiler to get the library name -> filename association