From 3e9338b923912773db46277e98e14462d4a3fb34 Mon Sep 17 00:00:00 2001 From: Dariqq Date: Sun, 18 Jan 2026 08:38:31 +0000 Subject: gnu: Use (target-32bit?) to test for 32bit targets. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/*.scm: Replace usage of target-64bit? when actually testing for 32bit targets. * guix/utils.scm (target-hurd32?). Same. Change-Id: If3ed2b82a1229b72b07fafc694eedc14080e5a04 Signed-off-by: Ludovic Courtès Merges: #5710 --- gnu/packages/version-control.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/version-control.scm') diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 7a034658017..272f837cb97 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1203,9 +1203,9 @@ other git-like projects such as @code{libgit2}.") "-DREGEX_BACKEND=pcre2" "-DUSE_HTTP_PARSER=system" "-DUSE_SSH=ON" ; cmake fails to find libssh if this is missing - ,@(if (target-64bit?) - '() - '("-DCMAKE_C_FLAGS=-D_FILE_OFFSET_BITS=64")))) + ,@(if (target-32bit?) + '("-DCMAKE_C_FLAGS=-D_FILE_OFFSET_BITS=64") + '()))) #:phases (modify-phases %standard-phases ;; Run checks more verbosely, unless we are cross-compiling. -- cgit v1.3