summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYelninei <yelninei@tutamail.com>2025-10-24 15:01:49 +0000
committerLudovic Courtès <ludo@gnu.org>2025-11-03 17:18:38 +0100
commit9319d612cbf15f37e1e9a6398c9cbc1ca976a74c (patch)
tree0dc16d5e183df5f74f04e967e5cb591a70dbd623
parent991719784aa2091985fc94c87d25a94f880413a3 (diff)
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 <ludo@gnu.org>
-rw-r--r--guix/utils.scm2
1 files changed, 1 insertions, 1 deletions
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?)