forked from Mirror/pmbootstrap
TEMP: disable pigz (MR 2252)
Seems to be having trouble unpacking archives... pigz: skipping: /var/cache/distfiles/postmarketos-mkinitfs-2.5.0.tar.gz ends with .gz tar: This does not look like a tar archive Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
This commit is contained in:
parent
3ad4ba2818
commit
79cf2e8910
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ def init_abuild_minimal(chroot: Chroot=Chroot.native()):
|
|||
|
||||
# pigz is multithreaded and makes compression must faster, we install it in the native
|
||||
# chroot and then symlink it into the buildroot so we aren't running it through QEMU.
|
||||
pmb.chroot.apk.install(["pigz"], Chroot.native(), build=False)
|
||||
# pmb.chroot.apk.install(["pigz"], Chroot.native(), build=False)
|
||||
pmb.chroot.apk.install(["abuild"], chroot, build=False)
|
||||
|
||||
# Fix permissions
|
||||
|
|
|
@ -121,7 +121,7 @@ def mount_native_into_foreign(chroot: Chroot):
|
|||
if not musl_link.is_symlink():
|
||||
pmb.helpers.run.root(["ln", "-s", "/native/lib/" + musl,
|
||||
musl_link])
|
||||
pmb.helpers.run.root(args, ["ln", "-sf", "/native/usr/bin/pigz", "/usr/local/bin/pigz"])
|
||||
# pmb.helpers.run.root(["ln", "-sf", "/native/usr/bin/pigz", "/usr/local/bin/pigz"])
|
||||
|
||||
def remove_mnt_pmbootstrap(chroot: Chroot):
|
||||
""" Safely remove /mnt/pmbootstrap directories from the chroot, without
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue