Gentoo GURU emerge: add --autounmask=y to handle ~amd64 keyword
The GURU emerge in run_once_20-install-user-packages-gentoo.sh.tmpl was missing --autounmask=y (only had --autounmask-license=y). Same fix as the main pkg loop: GURU packages like dev-vcs/lazygit are ~amd64-only and need the keyword unmask to be auto-written. Symptom: 'The following keyword changes are necessary to proceed: =dev-vcs/lazygit-0.62.2 ~amd64' even though --autounmask=y was already on the main pkg loop. Fix: add the same flag to the GURU loop.
This commit is contained in:
parent
598ad9dfae
commit
6ec6958a73
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ done
|
||||||
if (( ${#GURU_MISSING[@]} > 0 )); then
|
if (( ${#GURU_MISSING[@]} > 0 )); then
|
||||||
log "emerge GURU packages (missing: ${GURU_MISSING[*]})"
|
log "emerge GURU packages (missing: ${GURU_MISSING[*]})"
|
||||||
sudo emerge --ask=n --nospinner --quiet-build --keep-going \
|
sudo emerge --ask=n --nospinner --quiet-build --keep-going \
|
||||||
--with-bdeps=y --autounmask-license=y \
|
--with-bdeps=y --autounmask=y --autounmask-license=y \
|
||||||
"${GURU_MISSING[@]}"
|
"${GURU_MISSING[@]}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue