commit: b8998ebd8595fcae2a13ea8050bdb758726e1275 Author: Benda Xu <heroxbd <AT> gentoo <DOT> org> AuthorDate: Sat May 9 07:53:37 2020 +0000 Commit: Benda XU <heroxbd <AT> gentoo <DOT> org> CommitDate: Mon May 11 06:58:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=b8998ebd
bootstrap-prefix.sh: gawk depends on texinfo. gawk has to be merged with --nodeps. Closes: https://bugs.gentoo.org/717786 Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org> scripts/bootstrap-prefix.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 25e091c37a..3e36df7396 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1999,6 +1999,9 @@ bootstrap_stage3() { rm -f "${ROOT}"/etc/ld.so.conf.d/stage2.conf + # need special care, it depends on texinfo, #717786 + emerge_pkgs --nodeps sys-apps/gawk || return 1 + ( cd "${ROOT}"/usr/bin && test ! -e python && rm -f python${PYTHONMAJMIN} ) # Use $ROOT tools where possible from now on. if [[ $(readlink "${ROOT}"/bin/sh) == "${ROOT}/tmp/"* ]] ; then @@ -2021,7 +2024,6 @@ bootstrap_stage3() { app-arch/gzip app-arch/tar sys-apps/grep - sys-apps/gawk sys-devel/make sys-apps/file app-admin/eselect
