guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 9319d612cbf15f37e1e9a6398c9cbc1ca976a74c
Author: Yelninei <[email protected]>
AuthorDate: Fri Oct 24 15:01:49 2025 +0000
utils: Actually check the target in target-hurd64?.
* guix/utils.scm (target-hurd64?): Check the target argument.
Change-Id: Ic303e7d6e8284767c2a55411c68c043c3d18c04f
Signed-off-by: Ludovic Courtès <[email protected]>
---
guix/utils.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/utils.scm b/guix/utils.scm
index 56c52fb9d8..446627311a 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?)