diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-03-19 02:05:21 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-20 23:51:27 +0000 |
commit | d1fc46a2b034a9dbe58d01920ad3ef4ad5131029 (patch) | |
tree | 7567f931b1066b225c140bfdfd3bfabaa1ac1d58 | |
parent | e084060b59f2ad2ca5e3896afb2ff2dfb665cc67 (diff) | |
download | openembedded-core-d1fc46a2b034a9dbe58d01920ad3ef4ad5131029.tar.gz openembedded-core-d1fc46a2b034a9dbe58d01920ad3ef4ad5131029.tar.bz2 openembedded-core-d1fc46a2b034a9dbe58d01920ad3ef4ad5131029.zip |
lsb: fix installed-vs-shipped when build with multilib
The init-functions had been installed to /lib/lsb/init-functions
according to lsb spec, then there is an installed-vs-shipped issue when
build with multilib:
ERROR: QA Issue: lsb: Files/directories were installed but not shipped
/lib
/lib/lsb
/lib/lsb/init-functions [installed-vs-shipped]
Fix the issue and indent.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-extended/lsb/lsb_4.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/lsb/lsb_4.1.bb b/meta/recipes-extended/lsb/lsb_4.1.bb index f05c30cd2c..1ae1e26971 100644 --- a/meta/recipes-extended/lsb/lsb_4.1.bb +++ b/meta/recipes-extended/lsb/lsb_4.1.bb @@ -116,6 +116,7 @@ do_install_append(){ fi } FILES_${PN} += "/lib64 \ - /usr/lib/lsb \ + /usr/lib/lsb \ ${base_libdir}/lsb/* \ + /lib/lsb/* \ " |