summaryrefslogtreecommitdiff
path: root/archbuild.in
diff options
context:
space:
mode:
Diffstat (limited to 'archbuild.in')
-rw-r--r--archbuild.in10
1 files changed, 4 insertions, 6 deletions
diff --git a/archbuild.in b/archbuild.in
index 4b97963..e115547 100644
--- a/archbuild.in
+++ b/archbuild.in
@@ -23,14 +23,12 @@ else
arch_ext="-${arch}"
fi
fi
-if [[ "${arch}" == 'pentium4' ]]; then
- set_arch='i686'
-else
- set_arch="${arch}"
-fi
chroots='/var/lib/archbuild'
clean_first=false
+setarch="$arch"
+[[ "$setarch" = "pentium4" ]] && setarch="i686"
+
usage() {
echo "Usage: $cmd [options] -- [makechrootpkg args]"
echo ' -h This help'
@@ -79,7 +77,7 @@ if ${clean_first} || [[ ! -d "${chroots}/${repo}-${arch}" ]]; then
rm -rf --one-file-system "${chroots}/${repo}-${arch}"
mkdir -p "${chroots}/${repo}-${arch}"
- setarch "${set_arch}" mkarchroot \
+ setarch "${setarch}" mkarchroot \
-C "@pkgdatadir@/pacman-${repo}${arch_ext}.conf" \
-M "@pkgdatadir@/makepkg-${arch}.conf" \
${cache_dir} \