From 6201853f522fa95b51ecea81ec095be73517eeb2 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sun, 17 Oct 2010 12:57:48 +0200 Subject: install gcc-multilib for multilib-build by default --- archbuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/archbuild b/archbuild index 3f7a484..f44a07d 100755 --- a/archbuild +++ b/archbuild @@ -1,12 +1,16 @@ #!/bin/bash +base_packages='base base-devel sudo' + cmd="$(basename "${0%-build}")" if [ "${cmd}" == 'multilib' ]; then repo='multilib' arch='x86_64' + base_packages+=' gcc-multilib' elif [ "${cmd}" == 'multilib-testing' ]; then repo='multilib-testing' arch='x86_64' + base_packages+=' gcc-multilib' else repo=${cmd%-*} arch=${cmd#*-} @@ -42,7 +46,7 @@ if ${clean_first} || [ ! -d "${chroots}/${repo}-${arch}" ]; then -C /usr/share/devtools/pacman-${repo}.conf \ -M /usr/share/devtools/makepkg-${arch}.conf \ ${chroots}/${repo}-${arch}/root \ - base base-devel sudo + ${base_packages} fi echo "Building in chroot for [${repo}] (${arch})..." -- cgit v1.2.3-24-g4f1b