diff options
author | Maxim <kolmax94@gmail.com> | 2011-06-06 12:02:55 +0400 |
---|---|---|
committer | Maxim <kolmax94@gmail.com> | 2011-06-06 12:02:55 +0400 |
commit | 22cabc8e821e65cbf561b2be4bb220b9cbd7ff32 (patch) | |
tree | c2a01c77ae8c52d8a1cbb9ab7754675cc91e1bf2 | |
parent | Fix xz-utils compilation in full-bootstrap script (diff) | |
download | gentoo-openbsd-22cabc8e821e65cbf561b2be4bb220b9cbd7ff32.tar.gz gentoo-openbsd-22cabc8e821e65cbf561b2be4bb220b9cbd7ff32.tar.bz2 gentoo-openbsd-22cabc8e821e65cbf561b2be4bb220b9cbd7ff32.zip |
Add m4 and bison to automated prefix install
-rwxr-xr-x | script/full-bootstrap-prefix.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/script/full-bootstrap-prefix.sh b/script/full-bootstrap-prefix.sh index 0e07a63..7392066 100755 --- a/script/full-bootstrap-prefix.sh +++ b/script/full-bootstrap-prefix.sh @@ -28,6 +28,8 @@ mkdir -p $EPREFIX/tmp [ ! -x ${EPREFIX}/tmp/usr/bin/patch ] && ./bootstrap-prefix.sh $EPREFIX/tmp patch9 [ ! -x ${EPREFIX}/tmp/usr/bin/gawk ] && ./bootstrap-prefix.sh $EPREFIX/tmp gawk [ ! -x ${EPREFIX}/tmp/usr/bin/grep ] && ./bootstrap-prefix.sh $EPREFIX/tmp grep +[ ! -x ${EPREFIX}/tmp/usr/bin/m4 ] && ./bootstrap-prefix.sh $EPREFIX/tmp m4 +[ ! -x ${EPREFIX}/tmp/usr/bin/bison ] && ./bootstrap-prefix.sh $EPREFIX/tmp bison [ ! -x ${EPREFIX}/usr/bin/emerge ] && ./bootstrap-prefix.sh $EPREFIX portage hash -r |