From 9319d612cbf15f37e1e9a6398c9cbc1ca976a74c Mon Sep 17 00:00:00 2001 From: Yelninei Date: Fri, 24 Oct 2025 15:01:49 +0000 Subject: [PATCH] utils: Actually check the target in target-hurd64?. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * guix/utils.scm (target-hurd64?): Check the target argument. Change-Id: Ic303e7d6e8284767c2a55411c68c043c3d18c04f Signed-off-by: Ludovic Courtès --- guix/utils.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/utils.scm b/guix/utils.scm index 56c52fb9d8d..446627311a4 100644 --- a/guix/utils.scm +++ b/guix/utils.scm @@ -747,7 +747,7 @@ a character other than '@'." (define* (target-hurd64? #:optional (target (or (%current-target-system) (%current-system)))) "Does TARGET represent the 64bit GNU(/Hurd) system?" - (and (target-hurd?) + (and (target-hurd? target) (target-64bit? target))) (define* (system-hurd64?)