aboutsummaryrefslogtreecommitdiffstats
path: root/packages/bash
diff options
context:
space:
mode:
authorOyvind Repvik <nail@nslu2-linux.org>2005-09-30 20:20:57 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-09-30 20:20:57 +0000
commit2ab6897474ed70dd94cceffde19dbbc0c489313c (patch)
tree10cfad7d7cac34dcb93f048b64aebc8e35e09ce7 /packages/bash
parentb18db4fdac6da2040f56a3fb6d7887f3ca93c8fa (diff)
downloadopenembedded-2ab6897474ed70dd94cceffde19dbbc0c489313c.tar.gz
bash: kill the output from grepping after shells
Diffstat (limited to 'packages/bash')
-rw-r--r--packages/bash/bash_3.0.bb6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/bash/bash_3.0.bb b/packages/bash/bash_3.0.bb
index cffe165bee..8511035695 100644
--- a/packages/bash/bash_3.0.bb
+++ b/packages/bash/bash_3.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html"
DEPENDS = "ncurses"
SECTION = "base/shell"
LICENSE = "GPL"
-PR = "r5"
+PR = "r6"
SRC_URI = "${GNU_MIRROR}/bash/bash-${PV}.tar.gz \
file://signames-mipsel.diff;patch=1"
@@ -24,6 +24,6 @@ do_configure () {
}
pkg_postinst () {
- grep "bin/bash" ${sysconfdir}/shells || echo /bin/bash >> ${sysconfdir}/shells
- grep "bin/sh" ${sysconfdir}/shells || echo /bin/sh >> ${sysconfdir}/shells
+ grep -q "bin/bash" ${sysconfdir}/shells || echo /bin/bash >> ${sysconfdir}/shells
+ grep -q "bin/sh" ${sysconfdir}/shells || echo /bin/sh >> ${sysconfdir}/shells
}