summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2026-03-09 16:47:29 +0200
committerEfraim Flashner <efraim@flashner.co.il>2026-03-09 16:49:48 +0200
commitd4e9d74b66ec4db91fcf42945edd68d8a857f342 (patch)
treee0b1913a3e61f2e2f7bab62493beab1c7595d0e1
parent0352420cabae81ca0f57c934f524420974e16e71 (diff)
scripts: pack: Use correct Debian architecture for armhf-linux.
Fixes guix/guix#6989. * guix/scripts/pack.scm (debian-archive): When creating a Debian package for an armhf-linux machine match our architecture to the closest one of Debian's supported architectures. Change-Id: I596db1087c507e61cc31f0808ebd9e39b4956c49
-rw-r--r--guix/scripts/pack.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm
index a6a7babf595..722c707e508 100644
--- a/guix/scripts/pack.scm
+++ b/guix/scripts/pack.scm
@@ -707,6 +707,7 @@ Valid compressors are: ~a~%") compressor-name %valid-compressors)))
("i686" "i386")
("x86_64" "amd64")
("aarch64" "arm64")
+ ("arm" "armhf") ; Guix only supports armv7 or later.
("mipsisa32r6" "mipsr6")
("mipsisa32r6el" "mipsr6el")
("mipsisa64r6" "mips64r6")