commit: c42a4beac106387f0465099f833acdc42c96c2b1 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Wed May 3 18:53:21 2023 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Wed May 3 18:53:21 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=c42a4bea
scripts/bootstrap-prefix: bootstrap newer bison Bug: https://bugs.gentoo.org/902087 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org> scripts/bootstrap-prefix.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 260c7d229f..65661f615e 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1408,13 +1408,15 @@ bootstrap_bash() { } bootstrap_bison() { - bootstrap_gnu bison 2.6.2 || bootstrap_gnu bison 2.6.1 || \ - bootstrap_gnu bison 2.6 || bootstrap_gnu bison 2.5.1 || \ + bootstrap_gnu bison 3.8.2 || \ + bootstrap_gnu bison 2.6.2 || \ + bootstrap_gnu bison 2.5.1 || \ bootstrap_gnu bison 2.4 } bootstrap_m4() { - bootstrap_gnu m4 1.4.19 || bootstrap_gnu m4 1.4.18 # version is patched, so beware + bootstrap_gnu m4 1.4.19 || \ + bootstrap_gnu m4 1.4.18 # version is patched, so beware } bootstrap_gzip() {
