xbps-src: add bison to required host utils for bootstrap.

This commit is contained in:
Juan RP 2011-07-11 09:21:29 +02:00
parent e7fe66e840
commit bd2c0ccf9b

View File

@ -34,11 +34,12 @@
: ${xbps_machine:=$(uname -m)}
# Required utilities in host system.
REQHOST_UTILS="gawk bash sed gcc msgfmt patch makeinfo perl fakeroot tar xz"
REQHOST_UTILS="gawk bash bison sed gcc msgfmt patch makeinfo perl fakeroot tar xz"
check_reqhost_utils()
{
[ -n "$IN_CHROOT" ] && return 0
[ -r "$XBPS_MASTERDIR/.xbps_perms_done" ] && return 0
for f in ${REQHOST_UTILS}; do
if ! command -v ${f} 2>&1 >/dev/null; then