Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2019-11-20 20:26:49 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2019-11-20 20:26:49 +0100
commit37110674dea90e4b2e28022e0920fb6fbbb99f26 (patch)
tree57f43a6feb375b30a12e2895d29f436de9ce099f /bin
parentb694eaeb2bcc27d2e81d3698ce2c44dca508a9f4 (diff)
local-build-package: allow also any packages to be loaded into local bootstrapping area
Diffstat (limited to 'bin')
-rwxr-xr-xbin/local-build-package2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/local-build-package b/bin/local-build-package
index a80207b..0891026 100755
--- a/bin/local-build-package
+++ b/bin/local-build-package
@@ -117,7 +117,7 @@ if [ $# -ne 2 ]; then
usage
fi
-if [ "$arch" != "i486" ] && [ "$arch" != "i686" ] && [ "$arch" != "pentium4" ]; then
+if [ "$arch" != "any" ] && [ "$arch" != "i486" ] && [ "$arch" != "i686" ] && [ "$arch" != "pentium4" ]; then
>&2 echo "Illegal architecture '$arch', epxecting one of 'i486', 'i686' or 'pentium4'."
usage
fi