diff options
author | Elvis Dowson <elvis.dowson@gmail.com> | 2012-07-19 07:13:48 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-07-19 11:09:50 +0200 |
commit | bf63e5def3e0c334faec3a1791d328d8b63c2d24 (patch) | |
tree | b00863abfce936dea457813e5619b25ffbe3d787 /meta-oe/recipes-devtools | |
parent | 20cfbc9640550d80c0a484edf9abbc8c58784359 (diff) | |
download | meta-openembedded-bf63e5def3e0c334faec3a1791d328d8b63c2d24.tar.gz |
python_numpy: Fix SRC_URI warnings.
This commit fixes the following warnings:
WARNING: Unable to get checksum for python-numpy SRC_URI entry config.h: file could not be found
WARNING: Unable to get checksum for python-numpy SRC_URI entry numpyconfig.h: file could not be found
Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-devtools')
-rw-r--r-- | meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb b/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb index a67bf8b18..c1923f72a 100644 --- a/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb +++ b/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb | |||
@@ -5,7 +5,14 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3c42211d73c3faa1026e671dd39883fa" | |||
5 | PR = "r3" | 5 | PR = "r3" |
6 | 6 | ||
7 | SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/numpy-${PV}.tar.gz \ | 7 | SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/numpy-${PV}.tar.gz \ |
8 | file://config.h \ | 8 | ${CONFIGFILESURI} \ |
9 | " | ||
10 | CONFIGFILESURI ?= "" | ||
11 | |||
12 | CONFIGFILESURI_arm = "file://config.h \ | ||
13 | file://numpyconfig.h \ | ||
14 | " | ||
15 | CONFIGFILESURI_mipsel = "file://config.h \ | ||
9 | file://numpyconfig.h \ | 16 | file://numpyconfig.h \ |
10 | " | 17 | " |
11 | 18 | ||