glibc: Limit the locales that are generated under qemu. Note this patch totally trashes the other locales and would therefore need refinement for OE.

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@583 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2006-07-28 17:48:27 +00:00
parent c5b80f33c5
commit 5599ea7fb1
3 changed files with 27 additions and 0 deletions

View File

@ -77,6 +77,13 @@ do_install() {
grep -v $i ${WORKDIR}/SUPPORTED > ${WORKDIR}/SUPPORTED.tmp
mv ${WORKDIR}/SUPPORTED.tmp ${WORKDIR}/SUPPORTED
done
# If indicated, only build a limited selection of locales
if [ "${LIMIT_BUILT_LOCALES}" != "${LIMIT_BUILT_LOCALES}" ]; then
for i in ${LIMIT_BUILT_LOCALES}; do
grep $i ${WORKDIR}/SUPPORTED > ${WORKDIR}/SUPPORTED.tmp
mv ${WORKDIR}/SUPPORTED.tmp ${WORKDIR}/SUPPORTED
done
fi
rm -f ${D}/etc/rpc
}

View File

@ -0,0 +1,17 @@
do_rig_locales() {
# If indicated, only build a limited selection of locales
if [ "x${LIMIT_BUILT_LOCALES}" != "${LIMIT_BUILT_LOCALES}" ]; then
INFILE="${S}/localedata/SUPPORTED"
OUTFILE="${S}/localedata/SUPPORTED.tmp"
head -n 3 $INFILE > $OUTFILE
for i in ${LIMIT_BUILT_LOCALES}; do
echo
grep $i $INFILE >> $OUTFILE
done
head --lines=-1 $OUTFILE > $INFILE
tail --lines=1 $OUTFILE | sed 's#\\##' >> $INFILE
fi
}
addtask rig_locales before do_compile after do_configure

View File

@ -14,6 +14,8 @@ GLIBC_EXTRA_OECONF ?= ""
GLIBC_BROKEN_LOCALES = "sid_ET tr_TR mn_MN"
LIMIT_BUILT_LOCALES = "en_GB"
#
# For now, we will skip building of a gcc package if it is a uclibc one
# and our build is not a uclibc one, and we skip a glibc one if our build
@ -173,3 +175,4 @@ do_stage() {
}
include glibc-package.bbclass
include glibc.inc