summaryrefslogtreecommitdiffstats
path: root/meta/classes/rootfs_deb.bbclass
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2007-06-12 09:31:20 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2007-06-12 09:31:20 +0000
commit5c41f1ec4ca2d962b040ec6d5b8f1a9e03494e50 (patch)
treeac470017d49ca9db34d066b82b8983630ff9a772 /meta/classes/rootfs_deb.bbclass
parent25cbce31b3bb84347b16a9604164c4f5ac4b6ba6 (diff)
downloadpoky-5c41f1ec4ca2d962b040ec6d5b8f1a9e03494e50.tar.gz
rootfs_deb.bbclass: removed usage of /dev/null as stdin as BitBake do that now by default
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1919 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/rootfs_deb.bbclass')
-rw-r--r--meta/classes/rootfs_deb.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/rootfs_deb.bbclass b/meta/classes/rootfs_deb.bbclass
index 969c5080ff..f3dba97436 100644
--- a/meta/classes/rootfs_deb.bbclass
+++ b/meta/classes/rootfs_deb.bbclass
@@ -52,12 +52,12 @@ fakeroot rootfs_deb_do_rootfs () {
52 } 52 }
53 53
54 if [ ! -z "${LINGUAS_INSTALL}" ]; then 54 if [ ! -z "${LINGUAS_INSTALL}" ]; then
55 apt-get install glibc-localedata-i18n --force-yes --allow-unauthenticated </dev/null 55 apt-get install glibc-localedata-i18n --force-yes --allow-unauthenticated
56 if [ $? -ne 0 ]; then 56 if [ $? -ne 0 ]; then
57 exit $? 57 exit $?
58 fi 58 fi
59 for i in ${LINGUAS_INSTALL}; do 59 for i in ${LINGUAS_INSTALL}; do
60 apt-get install $i --force-yes --allow-unauthenticated </dev/null 60 apt-get install $i --force-yes --allow-unauthenticated
61 if [ $? -ne 0 ]; then 61 if [ $? -ne 0 ]; then
62 exit $? 62 exit $?
63 fi 63 fi
@@ -66,7 +66,7 @@ fakeroot rootfs_deb_do_rootfs () {
66 66
67 if [ ! -z "${PACKAGE_INSTALL}" ]; then 67 if [ ! -z "${PACKAGE_INSTALL}" ]; then
68 for i in ${PACKAGE_INSTALL}; do 68 for i in ${PACKAGE_INSTALL}; do
69 apt-get install $i --force-yes --allow-unauthenticated </dev/null 69 apt-get install $i --force-yes --allow-unauthenticated
70 if [ $? -eq 1 ]; then 70 if [ $? -eq 1 ]; then
71 exit 1 71 exit 1
72 fi 72 fi