From d4e9d74b66ec4db91fcf42945edd68d8a857f342 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 9 Mar 2026 16:47:29 +0200 Subject: [PATCH] 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 --- guix/scripts/pack.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm index a6a7babf59..722c707e50 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")