diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-28 17:48:27 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-28 17:48:27 +0000 |
commit | 5599ea7fb19258cc7695c9a38219c75338578759 (patch) | |
tree | 721b5eed1be9e3f6520f90e00875730c8410e6d2 /meta/packages/glibc/glibc.inc | |
parent | c5b80f33c555d4fd0576f31bafad022ceba508ae (diff) | |
download | openembedded-core-5599ea7fb19258cc7695c9a38219c75338578759.tar.gz openembedded-core-5599ea7fb19258cc7695c9a38219c75338578759.tar.bz2 openembedded-core-5599ea7fb19258cc7695c9a38219c75338578759.zip |
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
Diffstat (limited to 'meta/packages/glibc/glibc.inc')
-rw-r--r-- | meta/packages/glibc/glibc.inc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/packages/glibc/glibc.inc b/meta/packages/glibc/glibc.inc new file mode 100644 index 0000000000..4459f76a87 --- /dev/null +++ b/meta/packages/glibc/glibc.inc @@ -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 |