diff --git a/run_once_20-install-user-packages-gentoo.sh.tmpl b/run_once_20-install-user-packages-gentoo.sh.tmpl index e5c1a5b..e524dce 100644 --- a/run_once_20-install-user-packages-gentoo.sh.tmpl +++ b/run_once_20-install-user-packages-gentoo.sh.tmpl @@ -139,8 +139,11 @@ if (( ${#MISSING_PKGS[@]} > 0 )); then # --quiet-build: only show errors during compile # --keep-going: don't abort if one package fails # --with-bdeps=y: include build deps so we don't accidentally skip them + # --autounmask=y: auto-write ~amd64 keyword unmask files (lazygit + # is ~amd64 only) + # --autounmask-license=y: auto-accept license unmask sudo emerge --ask=n --nospinner --quiet-build --keep-going \ - --with-bdeps=y --autounmask-license=y \ + --with-bdeps=y --autounmask=y --autounmask-license=y \ "${MISSING_PKGS[@]}" else log "all user packages already installed; skipping emerge" diff --git a/run_once_40-install-sway-gentoo.sh.tmpl b/run_once_40-install-sway-gentoo.sh.tmpl index 769414e..1506b74 100644 --- a/run_once_40-install-sway-gentoo.sh.tmpl +++ b/run_once_40-install-sway-gentoo.sh.tmpl @@ -71,7 +71,7 @@ if (( ${#MISSING_PKGS[@]} > 0 )); then log "missing: ${MISSING_PKGS[*]}" log "emerge sway stack (gentoo compiles from source; this may take a while)" sudo emerge --ask=n --nospinner --quiet-build --keep-going \ - --with-bdeps=y --autounmask-license=y \ + --with-bdeps=y --autounmask=y --autounmask-license=y \ "${MISSING_PKGS[@]}" else log "all sway packages already installed; skipping emerge"