1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 13:16:39 +03:00

don't recompile dependencies we've already got

This commit is contained in:
Sam M W 2022-08-07 18:43:40 +01:00 committed by Wez Furlong
parent 263282a75b
commit 8a625a941e

View File

@ -223,7 +223,7 @@ gentoo_deps() {
portageq envvar USE | xargs -n 1 | grep '^X$' \
|| (echo 'X is not found in USE flags' && exit 1)
EMERGE="$SUDO emerge"
$EMERGE --select \
for pkg in \
'cmake' \
'fontconfig' \
'openssl' \
@ -239,6 +239,9 @@ gentoo_deps() {
'xcb-util-image' \
'xcb-util-keysyms' \
'xcb-util-wm'
do
equery l "$pkg" > /dev/null || $EMERGE --select $pkg
done
}
fallback_method() {