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:
parent
263282a75b
commit
8a625a941e
5
get-deps
5
get-deps
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user