diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-20 08:30:44 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-02-20 08:30:44 +0000 |
commit | ab1479e869a7e78602c39487542556040d90d8d0 (patch) | |
tree | 38c3ee4bd865c5e51b54cd681de51bd74cbf6ed4 /packages/bash/bash_3.2.bb | |
parent | fbf5bf61ecfeb8c868945dcfb02a74f612eb59a4 (diff) |
bash: unified, bumped PR
Diffstat (limited to 'packages/bash/bash_3.2.bb')
-rw-r--r-- | packages/bash/bash_3.2.bb | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/packages/bash/bash_3.2.bb b/packages/bash/bash_3.2.bb index fd59b846ed..8e0293e001 100644 --- a/packages/bash/bash_3.2.bb +++ b/packages/bash/bash_3.2.bb @@ -1,29 +1,5 @@ -DESCRIPTION = "An sh-compatible command language interpreter." -HOMEPAGE = "http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html" -DEPENDS = "ncurses" -SECTION = "base/shell" -LICENSE = "GPL" +require bash.inc +PR = "r1" SRC_URI = "${GNU_MIRROR}/bash/bash-${PV}.tar.gz \ file://001-005.patch;patch=1" - -inherit autotools gettext - -PARALLEL_MAKE = "" - -bindir = "/bin" -sbindir = "/sbin" - -EXTRA_OECONF = "--with-ncurses" -export CC_FOR_BUILD = "${BUILD_CC}" - -do_configure () { - gnu-configize - oe_runconf -} - -pkg_postinst () { - touch ${sysconfdir}/shells - grep -q "bin/bash" ${sysconfdir}/shells || echo /bin/bash >> ${sysconfdir}/shells - grep -q "bin/sh" ${sysconfdir}/shells || echo /bin/sh >> ${sysconfdir}/shells -} |