]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commit
glibc-package.inc: fix order in PACKAGES ChenQi/hardcoding
authorChen Qi <Qi.Chen@windriver.com>
Mon, 17 Nov 2014 09:02:08 +0000 (04:02 -0500)
committerChen Qi <Qi.Chen@windriver.com>
Fri, 19 Dec 2014 09:05:26 +0000 (17:05 +0800)
commiteea9ee5b88e18fd5e1aa64f5f40df2cd0be9d910
tree20a6ba58dae0e87ef966fb9468ea8ad29f933bee
parenta17981b1a7724354814a5f9d08507df94330f4a8
glibc-package.inc: fix order in PACKAGES

FILES_${PN}-utils = "${bindir}/* ${sbindir}/*"
FILES_${PN} = "${libc_baselibs} ${libexecdir}/* ${@base_conditional('USE_LDCONFIG', '1', '${base_sbindir}/ldconfig ${sysconfdir}/ld.so.conf', '', d)}"

From the above two assignments, we can see that ${PN}-utils needs to be ordered
after ${PN} in the PACKAGES variable. Otherwise, ldconfig would be packaged into
${PN}-utils if ${base_sbindir} and ${sbindir} point to the same location.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
meta/recipes-core/glibc/glibc-package.inc