diff options
| author | Chen Qi <Qi.Chen@windriver.com> | 2014-03-04 09:51:33 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-07 14:49:33 +0000 |
| commit | 8d4c4d1ca557621aba26aa86a6c0104f9750afe6 (patch) | |
| tree | bbeddf30a9a420c790d51aed64673599c862ad76 /meta/recipes-devtools/python/python-numpy_1.7.0.bb | |
| parent | 06ecf39b0240674ef131d94cf5dc65adf5e7af2b (diff) | |
| download | poky-8d4c4d1ca557621aba26aa86a6c0104f9750afe6.tar.gz | |
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>
Diffstat (limited to 'meta/recipes-devtools/python/python-numpy_1.7.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python-numpy_1.7.0.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-numpy_1.7.0.bb b/meta/recipes-devtools/python/python-numpy_1.7.0.bb index 3fa485e080..f8974cf802 100644 --- a/meta/recipes-devtools/python/python-numpy_1.7.0.bb +++ b/meta/recipes-devtools/python/python-numpy_1.7.0.bb | |||
| @@ -34,6 +34,14 @@ CONFIGFILESURI_x86-64 = " \ | |||
| 34 | file://config.h \ | 34 | file://config.h \ |
| 35 | file://_numpyconfig.h \ | 35 | file://_numpyconfig.h \ |
| 36 | " | 36 | " |
| 37 | CONFIGFILESURI_mips = " \ | ||
| 38 | file://config.h \ | ||
| 39 | file://_numpyconfig.h \ | ||
| 40 | " | ||
| 41 | CONFIGFILESURI_powerpc = " \ | ||
| 42 | file://config.h \ | ||
| 43 | file://_numpyconfig.h \ | ||
| 44 | " | ||
| 37 | 45 | ||
| 38 | S = "${WORKDIR}/numpy-${PV}" | 46 | S = "${WORKDIR}/numpy-${PV}" |
| 39 | 47 | ||
