Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xarchiso/mkarchiso7
1 files changed, 3 insertions, 4 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso
index 63c2364..e7f52b3 100755
--- a/archiso/mkarchiso
+++ b/archiso/mkarchiso
@@ -13,9 +13,6 @@ export SOURCE_DATE_EPOCH
# Set application name from the script's file name
app_name="${0##*/}"
-# pass architecture via environment
-arch=${arch:-$(uname -m)}
-
# Define global variables. All of them will be overwritten later
pkg_list=()
bootstrap_pkg_list=()
@@ -30,7 +27,9 @@ iso_publisher=""
iso_application=""
iso_version=""
install_dir=""
-arch=""
+# pass architecture via environment from build-all
+arch=${arch:-$(uname -m)}
+#arch=""
pacman_conf=""
packages=""
bootstrap_packages=""