mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 09:46:38 +01:00
python-numpy: fix build for qemumips and qemuppc
When building python-numpy for qemumips or qemuppc, the following error appeared. cp: cannot stat `xxx/python-numpy/1.7.0-r1/*config.h': No such file or directory This is because for qemumips or qemuppc, there are no such files in SRC_URI. This patch fixes this compiling error by adding necessary files to the SRC_URI. (From OE-Core rev: 15582a25f964e53d28ca0b5c94df3a803c366fed) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -34,6 +34,14 @@ CONFIGFILESURI_x86-64 = " \
|
||||
file://config.h \
|
||||
file://_numpyconfig.h \
|
||||
"
|
||||
CONFIGFILESURI_mips = " \
|
||||
file://config.h \
|
||||
file://_numpyconfig.h \
|
||||
"
|
||||
CONFIGFILESURI_powerpc = " \
|
||||
file://config.h \
|
||||
file://_numpyconfig.h \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/numpy-${PV}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user