summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-xbin/reproducible_build.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 8eb78362..bc97cf2d 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -588,7 +588,7 @@ check_suitability() {
break
fi
# special case arm…
- if [ "$ARCH" = "armhf" ] && [ "$arch" = "any-arm" ] ; then
+ if ( [ "$ARCH" = "armhf" ] || "$ARCH" = "arm64" ] ) && [ "$arch" = "any-arm" ] ; then
SUITABLE=true
break
fi
@@ -657,6 +657,9 @@ second_build() {
armhf) locale=it_CH
language=it
;;
+ arm64) locale=nl_BE
+ language=nl
+ ;;
i386) locale=de_CH
language=de
;;