diff options
author | Alejandro Enedino Hernandez Samaniego <alejandro.enedino.hernandez-samaniego@xilinx.com> | 2019-05-17 16:49:12 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-21 12:56:33 +0100 |
commit | 4b26e42b976268557b67182492374f6d9613545f (patch) | |
tree | abaf292156e4c27b463b861c557d055c914ceef6 /meta/recipes-devtools/python-numpy | |
parent | 621bf4ef6842eedeb92ec42ce6fe45d98ed48903 (diff) | |
download | poky-4b26e42b976268557b67182492374f6d9613545f.tar.gz |
python-numpy: Avoid installing copy of f2py script
Both python-numpy and python3-numpy try to install the file:
${D}/${bindir}/f2py
which causes an error during do_rootfs since the package manager complains about that.
The numpy packages create basically copies of f2py script with the following names:
f2py (on both)
f2py2 (on python 2)
f2py2.7 (on python 2)
f2py3 (on python 3)
f2py3.7 (on python 3)
Remove the copy of f2py from python-numpy in favor of using the one from python3
to avoid installation issues at do_rootfs().
(From OE-Core rev: a625899c4de4f8ec030ade09686f0c7c0e624a50)
Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python-numpy')
-rw-r--r-- | meta/recipes-devtools/python-numpy/python-numpy_1.16.3.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python-numpy/python-numpy_1.16.3.bb b/meta/recipes-devtools/python-numpy/python-numpy_1.16.3.bb index 50137895ca..a1133dad41 100644 --- a/meta/recipes-devtools/python-numpy/python-numpy_1.16.3.bb +++ b/meta/recipes-devtools/python-numpy/python-numpy_1.16.3.bb | |||
@@ -4,3 +4,7 @@ require python-numpy.inc | |||
4 | RDEPENDS_${PN}_class-target_append = " \ | 4 | RDEPENDS_${PN}_class-target_append = " \ |
5 | ${PYTHON_PN}-subprocess \ | 5 | ${PYTHON_PN}-subprocess \ |
6 | " | 6 | " |
7 | |||
8 | do_install_append(){ | ||
9 | rm ${D}/${bindir}/f2py | ||
10 | } | ||