summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xarchbuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/archbuild b/archbuild
index 19b734b..fa16914 100755
--- a/archbuild
+++ b/archbuild
@@ -1,12 +1,12 @@
#!/bin/bash
-base_packages='base base-devel sudo'
+base_packages=(base base-devel sudo)
cmd="$(basename "${0%-build}")"
if [ "${cmd%-*}" == 'multilib' ]; then
repo="${cmd}"
arch='x86_64'
- base_packages+=' multilib-devel'
+ base_packages+=(multilib-devel)
else
repo=${cmd%-*}
arch=${cmd##*-}
@@ -56,7 +56,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_packages}
+ "${base_packages[@]}"
else
setarch ${arch} mkarchroot \
-u \