[OE-core] [PATCH] lsb: change script init-functions installed path

chan at windriver.com chan at windriver.com
Fri Feb 21 09:45:09 UTC 2014


From: Han Chao <chan at windriver.com>

The bb code assume the target is 64bit, so some files can not be
installed well. init-functions is a text script. Other script called
it from /lib/lsb, but it is installed on /lib64/lsb.
So this change fix the image path and packages.

Signed-off-by: Han Chao <chan at windriver.com>
---
 meta/recipes-extended/lsb/lsb_4.1.bb |    9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-extended/lsb/lsb_4.1.bb b/meta/recipes-extended/lsb/lsb_4.1.bb
index ecb4dcc..62a8077 100644
--- a/meta/recipes-extended/lsb/lsb_4.1.bb
+++ b/meta/recipes-extended/lsb/lsb_4.1.bb
@@ -30,6 +30,7 @@ do_install(){
 
 	mkdir -p ${D}${base_bindir}
 	mkdir -p ${D}/${baselib}
+	mkdir -p ${D}/lib
 	mkdir -p ${D}${sysconfdir}/lsb-release.d
 	printf "LSB_VERSION=\"core-4.1-noarch:" > ${D}${sysconfdir}/lsb-release
 
@@ -70,12 +71,12 @@ do_install(){
 
 do_install_append(){
        install -d ${D}${sysconfdir}/core-lsb
-       install -d ${D}/${baselib}/lsb
+       install -d ${D}/lib/lsb
        for i in lsb_killproc lsb_log_message lsb_pidofproc lsb_start_daemon
        do
            install -m 0755 ${WORKDIR}/${i} ${D}${sysconfdir}/core-lsb
        done
-       install -m 0755 ${WORKDIR}/init-functions ${D}/${baselib}/lsb
+       install -m 0755 ${WORKDIR}/init-functions ${D}/lib/lsb
 
        # creat links for LSB test
        install -d ${D}/usr/lib/lsb
@@ -114,8 +115,8 @@ do_install_append(){
                ln -sf ld.so.1 ld-lsb-ppc32.so.3
        fi
 }
-FILES_${PN} += "/lib64 \
+FILES_${PN} += "/lib \
+		${baselib} \
 		/usr/lib/lsb \
-                ${base_libdir}/lsb/* \
 		${libdir}/sendmail \
                "
-- 
1.7.9.5




More information about the Openembedded-core mailing list