Always install base, base-devel and git inside of the base chroots

This commit is contained in:
jld3103 2021-10-06 21:25:44 +02:00
parent c4760bd99e
commit 291ddb85ca
2 changed files with 3 additions and 4 deletions

View file

@ -358,7 +358,7 @@ def setup_build_chroot(arch: str, extra_packages=[]) -> str:
chroot_path = create_chroot(
chroot_name,
arch=arch,
packages=list(set(['base-devel', 'git'] + extra_packages)),
packages=list(set(['base', 'base-devel', 'git'] + extra_packages)),
extra_repos=get_kupfer_local(arch).repos,
)
pacman_cache = mount_pacman_cache(chroot_path, arch)