]> code.ossystems Code Review - openembedded-core.git/commit
eglibc: fix packaging of some of nativesdk packages
authorDmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Wed, 21 Sep 2011 18:39:58 +0000 (22:39 +0400)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 22 Sep 2011 07:47:22 +0000 (08:47 +0100)
commit974cdb88680359aac5aefd11b84c4a374ab3a753
tree745f04249c003f08cae1517365c8ea9d61d6adf3
parentd12aa92b3dac1109d510e7b6f74055d1ab927817
eglibc: fix packaging of some of nativesdk packages

eglibc.inc contains packaging rules that depend on PKGSUFFIX expansion.
However that variable wasn't expanded properly in some case. E.g.

PACKAGES = " ... nscd${PKGSUFFIX} ..."
FILES_nscd${PKGSUFFIX} = "${sbindir}/nscd*"

would be expanded to

PACKAGES = " ... nscd-nativesdk ..."
FILES_nscd = "${sbindir}/nscd*"

Thus leading to empty -nativesdk packages and missing files. To overcome
that use python code blob to properly define PKGSUFFIX variable.

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-core/eglibc/eglibc-locale.inc
meta/recipes-core/eglibc/eglibc-package.inc
meta/recipes-core/eglibc/eglibc_2.12.bb
meta/recipes-core/eglibc/eglibc_2.13.bb