From 83eac65134889b10e4e2d5bcb6a327ee8cafe941 Mon Sep 17 00:00:00 2001 From: bill-auger Date: Mon, 28 Nov 2022 10:42:47 -0500 Subject: revert 'use fakeroot-tcp in ARM chroots' change --- src/chroot-tools/librechroot | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/chroot-tools/librechroot b/src/chroot-tools/librechroot index d7cecea..9f23945 100755 --- a/src/chroot-tools/librechroot +++ b/src/chroot-tools/librechroot @@ -541,10 +541,7 @@ main() { if [[ ! -d $rootdir ]]; then # Create chroot seed system - # NOTE: ARM chroots require 'fakeroot-tcp' (BR #2775) - local fakeroot_pkg=fakeroot$( [[ "${target_arch}" == 'armv7h' ]] && echo '-tcp' ) - local chroot_pkgs=$( pacman --config "${seed_pacmanconf}" -Sgq base-devel | \ - sed "s|fakeroot|${fakeroot_pkg}|" ) + local chroot_pkgs=$( pacman --config "${seed_pacmanconf}" -Sgq base-devel ) msg "Creating 'root' seed for chroot [%s]" "$CHROOT" mkarchroot "$rootdir" ${chroot_pkgs}