aboutsummaryrefslogtreecommitdiffstats
path: root/packages/glibc
diff options
context:
space:
mode:
authorJustin Patrin <papercrane@gmail.com>2006-11-16 00:03:59 +0000
committerJustin Patrin <papercrane@gmail.com>2006-11-16 00:03:59 +0000
commitea5f6ff60ccc790acd65a44d4466078e4def347e (patch)
tree69d150efdb99042dd653ecec25a7b6e2ae129bd6 /packages/glibc
parentda7c6ec1d33c3159683a9c79734f0dc4e66a4f7c (diff)
downloadopenembedded-ea5f6ff60ccc790acd65a44d4466078e4def347e.tar.gz
glibc: use xargs to avoid a long command-line
Diffstat (limited to 'packages/glibc')
-rw-r--r--packages/glibc/glibc-package.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/glibc/glibc-package.bbclass b/packages/glibc/glibc-package.bbclass
index 159f5861a3..fc0313f936 100644
--- a/packages/glibc/glibc-package.bbclass
+++ b/packages/glibc/glibc-package.bbclass
@@ -144,7 +144,7 @@ do_prep_locale_tree() {
for i in $treedir/${datadir}/i18n/charmaps/*gz; do
gunzip $i
done
- cp -a ${D}/lib/* $treedir/lib
+ ls ${D}/lib/* | xargs -iBLAH cp -a BLAH $treedir/lib
if [ -f ${CROSS_DIR}/${TARGET_SYS}/lib/libgcc_s.* ]; then
cp -a ${CROSS_DIR}/${TARGET_SYS}/lib/libgcc_s.* $treedir/lib
fi