mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 09:29:40 +01:00
Change the installation process so we have bashbug in ${bindir} and
bash at ${base_bindir}.
(From OE-Core rev: f2dc23cf886de95040080c4398a3320c211b65fa)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
DESCRIPTION = "An sh-compatible command language interpreter."
|
|
HOMEPAGE = "http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html"
|
|
SECTION = "base/shell"
|
|
|
|
# GPLv2+ (< 4.0), GPLv3+ (>= 4.0)
|
|
LICENSE = "GPLv3+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
DEPENDS = "ncurses bison-native"
|
|
|
|
inherit autotools gettext update-alternatives
|
|
|
|
PARALLEL_MAKE = ""
|
|
|
|
EXTRA_OECONF = "--enable-job-control"
|
|
export CC_FOR_BUILD = "${BUILD_CC}"
|
|
|
|
ALTERNATIVE_${PN} = "sh"
|
|
ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh"
|
|
ALTERNATIVE_TARGET[sh] = "${base_bindir}/bash"
|
|
ALTERNATIVE_PRIORITY = "100"
|
|
|
|
export AUTOHEADER = "true"
|
|
|
|
do_configure_prepend () {
|
|
if [ ! -e acinclude.m4 ]; then
|
|
cat aclocal.m4 > acinclude.m4
|
|
fi
|
|
}
|
|
|
|
do_install_append () {
|
|
# Move /usr/bin/bash to /bin/bash, if need
|
|
if [ "${base_bindir}" != "${bindir}" ]; then
|
|
mkdir -p ${D}${base_bindir}
|
|
mv ${D}${bindir}/bash ${D}${base_bindir}
|
|
fi
|
|
}
|
|
|
|
pkg_postinst_${PN} () {
|
|
touch $D${sysconfdir}/shells
|
|
grep -q "bin/bash" $D${sysconfdir}/shells || echo /bin/bash >> $D${sysconfdir}/shells
|
|
grep -q "bin/sh" $D${sysconfdir}/shells || echo /bin/sh >> $D${sysconfdir}/shells
|
|
}
|