From 1a507bbebad8352489058fd47840e6420163ec6c Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 15 Dec 2015 12:51:02 +0100 Subject: reproducible archlinux: enable multilib, so multilib can be build --- bin/reproducible_setup_archlinux_schroot.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bin/reproducible_setup_archlinux_schroot.sh') diff --git a/bin/reproducible_setup_archlinux_schroot.sh b/bin/reproducible_setup_archlinux_schroot.sh index 2b5bf3da..97b3a4e2 100755 --- a/bin/reproducible_setup_archlinux_schroot.sh +++ b/bin/reproducible_setup_archlinux_schroot.sh @@ -87,7 +87,11 @@ echo ". /etc/profile.d/proxy.sh" | tee -a $SCHROOT_BASE/$TARGET/root/.bashrc # configure pacman $ROOTCMD bash -l -c 'pacman-key --init' $ROOTCMD bash -l -c 'pacman-key --populate archlinux' +# use a specific mirror echo "Server = $ARCHLINUX_MIRROR/\$repo/os/\$arch" | tee -a $SCHROOT_BASE/$TARGET/etc/pacman.d/mirrorlist +# enable multilib +# (-0777 tells perl to read the whole file before processing it. then it just does a multi-line regex…) +perl -0777 -i -pe 's/#\[multilib\]\n#Include = \/etc\/pacman.d\/mirrorlist/[multilib]\nInclude = \/etc\/pacman.d\/mirrorlist/igs' $SCHROOT_BASE/$TARGET/etc/pacman.conf $ROOTCMD bash -l -c 'pacman -Syu --noconfirm' $ROOTCMD bash -l -c 'pacman -S --noconfirm base-devel devtools abs' # configure abs -- cgit v1.2.3-54-g00ecf