summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJackie Huang <jackie.huang@windriver.com>2013-03-15 15:04:01 +0800
committerXin Ouyang <Xin.Ouyang@windriver.com>2013-03-19 15:22:01 +0800
commit5fe6c3b509aefe32aad6dcbb6ac406c9cf726fc4 (patch)
treec83c241bc73ff504dace9e5595e08defbe6d7ee8
parentfcf1b5dd20883777b46fb70bd5f51f8e0ee2dffa (diff)
downloadmeta-selinux-5fe6c3b509aefe32aad6dcbb6ac406c9cf726fc4.tar.gz
ustr: fix PN -> BPN in do_install for multilibs
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
-rw-r--r--recipes-extended/ustr/ustr_1.0.4.bb12
1 files changed, 6 insertions, 6 deletions
diff --git a/recipes-extended/ustr/ustr_1.0.4.bb b/recipes-extended/ustr/ustr_1.0.4.bb
index 269e061..6651a73 100644
--- a/recipes-extended/ustr/ustr_1.0.4.bb
+++ b/recipes-extended/ustr/ustr_1.0.4.bb
@@ -4,7 +4,7 @@ DESCRIPTION = "Micro string library, very low overhead from plain strdup() (Ave.
4just include a single header file into your .c and start using it." 4just include a single header file into your .c and start using it."
5 5
6SECTION = "base" 6SECTION = "base"
7PR = "r1" 7PR = "r2"
8LICENSE = "MIT | LGPLv2+ | BSD" 8LICENSE = "MIT | LGPLv2+ | BSD"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=c79c6e2ae13418d16d7dc82df960a1e7 \ 9LIC_FILES_CHKSUM = "file://LICENSE;md5=c79c6e2ae13418d16d7dc82df960a1e7 \
10 file://LICENSE_BSD;md5=ceb504b0b6471e76cc9cb32cfb150f3c \ 10 file://LICENSE_BSD;md5=ceb504b0b6471e76cc9cb32cfb150f3c \
@@ -43,11 +43,11 @@ do_install() {
43 oe_runmake install-multilib-linux \ 43 oe_runmake install-multilib-linux \
44 mlib=${SITEINFO_BITS} \ 44 mlib=${SITEINFO_BITS} \
45 DESTDIR=${D} LDCONFIG=/bin/true 45 DESTDIR=${D} LDCONFIG=/bin/true
46 mkdir -p ${D}/${datadir}/doc/${PN}-${PV} 46 mkdir -p ${D}/${datadir}/doc/${BPN}-${PV}
47 install ChangeLog ${D}/${datadir}/doc/${PN}-${PV} 47 install ChangeLog ${D}/${datadir}/doc/${BPN}-${PV}
48 install LICENSE* ${D}/${datadir}/doc/${PN}-${PV} 48 install LICENSE* ${D}/${datadir}/doc/${BPN}-${PV}
49 install README ${D}/${datadir}/doc/${PN}-${PV} 49 install README ${D}/${datadir}/doc/${BPN}-${PV}
50 install NEWS ${D}/${datadir}/doc/${PN}-${PV} 50 install NEWS ${D}/${datadir}/doc/${BPN}-${PV}
51 mv ${D}/${docdir}/ustr-devel-${PV}/strdup\ vs.\ ustr.gnumeric \ 51 mv ${D}/${docdir}/ustr-devel-${PV}/strdup\ vs.\ ustr.gnumeric \
52 ${D}/${docdir}/ustr-devel-${PV}/strdup_vs._ustr.gnumeric 52 ${D}/${docdir}/ustr-devel-${PV}/strdup_vs._ustr.gnumeric
53} 53}