diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2013-03-15 15:04:02 +0800 |
---|---|---|
committer | Xin Ouyang <Xin.Ouyang@windriver.com> | 2013-03-19 15:22:03 +0800 |
commit | b76b660fbfe3ee8404bb0058ca2e08fe7922ed3c (patch) | |
tree | 3822ae88a9e048ac91b56af1f9349caa8c1da2d5 | |
parent | 5fe6c3b509aefe32aad6dcbb6ac406c9cf726fc4 (diff) | |
download | meta-selinux-b76b660fbfe3ee8404bb0058ca2e08fe7922ed3c.tar.gz |
python-ipy: fix PN -> BPN in do_install for multilibs
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
-rw-r--r-- | recipes-devtools/python/python-ipy_0.75.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes-devtools/python/python-ipy_0.75.bb b/recipes-devtools/python/python-ipy_0.75.bb index 9ccb6bc..68c38b9 100644 --- a/recipes-devtools/python/python-ipy_0.75.bb +++ b/recipes-devtools/python/python-ipy_0.75.bb | |||
@@ -9,7 +9,7 @@ DEPENDS = "python" | |||
9 | LICENSE = "BSD" | 9 | LICENSE = "BSD" |
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=ebc0028ff5cdaf7796604875027dcd55" | 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=ebc0028ff5cdaf7796604875027dcd55" |
11 | 11 | ||
12 | PR = "r1" | 12 | PR = "r2" |
13 | 13 | ||
14 | SRC_URI = "http://pypi.python.org/packages/source/I/IPy/IPy-${PV}.tar.gz" | 14 | SRC_URI = "http://pypi.python.org/packages/source/I/IPy/IPy-${PV}.tar.gz" |
15 | 15 | ||
@@ -29,6 +29,6 @@ export STAGING_LIBDIR | |||
29 | BBCLASSEXTEND = "native" | 29 | BBCLASSEXTEND = "native" |
30 | 30 | ||
31 | do_install_append() { | 31 | do_install_append() { |
32 | install -d ${D}/${datadir}/doc/${PN}-${PV} | 32 | install -d ${D}/${datadir}/doc/${BPN}-${PV} |
33 | install AUTHORS COPYING ChangeLog PKG-INFO README ${D}/${datadir}/doc/${PN}-${PV} | 33 | install AUTHORS COPYING ChangeLog PKG-INFO README ${D}/${datadir}/doc/${BPN}-${PV} |
34 | } | 34 | } |