This removes a hack introduced in 2006 to work around a bug in portage where it wouldn't fetch distfiles if a binary package existed for the package. Presumably that's been fixed in the intervening 14 years. See commit 4e00f1338637 (We now only set the options for pkgcache if we are not using fetchonly.)
Also remove the useless "i++ // increment i"-style comment. Signed-off-by: Matt Turner <[email protected]> --- targets/support/chroot-functions.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh index 488041fe..d40279ae 100755 --- a/targets/support/chroot-functions.sh +++ b/targets/support/chroot-functions.sh @@ -152,8 +152,9 @@ setup_emerge_opts() { then emerge_opts+=(--fetchonly) bootstrap_opts+=(-f) - # if we have PKGCACHE, and either update_seed is empty or 'no', make and use binpkgs - elif [ -n "${clst_PKGCACHE}" ] && [ -z "${clst_update_seed}" -o "${clst_update_seed}" = "no" ] + fi + + if [ -n "${clst_PKGCACHE}" ] && [ -z "${clst_update_seed}" -o "${clst_update_seed}" = "no" ] then emerge_opts+=(--usepkg --buildpkg --binpkg-respect-use=y --newuse) bootstrap_opts+=(-r) -- 2.26.2
