diff options
| author | Dariqq <dariqq@posteo.net> | 2026-01-18 08:38:31 +0000 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-02-20 22:34:56 +0100 |
| commit | 3e9338b923912773db46277e98e14462d4a3fb34 (patch) | |
| tree | 7cc2b61e9ee0b0d39b51208dae158e68d338ce5b /gnu/packages/version-control.scm | |
| parent | aa69f0f3e87c22904f3f65b77ebbcb957b546d8f (diff) | |
gnu: Use (target-32bit?) to test for 32bit targets.
* 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 <ludo@gnu.org>
Merges: #5710
Diffstat (limited to 'gnu/packages/version-control.scm')
| -rw-r--r-- | gnu/packages/version-control.scm | 6 |
1 files changed, 3 insertions, 3 deletions
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}.") | |||
| 1203 | "-DREGEX_BACKEND=pcre2" | 1203 | "-DREGEX_BACKEND=pcre2" |
| 1204 | "-DUSE_HTTP_PARSER=system" | 1204 | "-DUSE_HTTP_PARSER=system" |
| 1205 | "-DUSE_SSH=ON" ; cmake fails to find libssh if this is missing | 1205 | "-DUSE_SSH=ON" ; cmake fails to find libssh if this is missing |
| 1206 | ,@(if (target-64bit?) | 1206 | ,@(if (target-32bit?) |
| 1207 | '() | 1207 | '("-DCMAKE_C_FLAGS=-D_FILE_OFFSET_BITS=64") |
| 1208 | '("-DCMAKE_C_FLAGS=-D_FILE_OFFSET_BITS=64")))) | 1208 | '()))) |
| 1209 | #:phases | 1209 | #:phases |
| 1210 | (modify-phases %standard-phases | 1210 | (modify-phases %standard-phases |
| 1211 | ;; Run checks more verbosely, unless we are cross-compiling. | 1211 | ;; Run checks more verbosely, unless we are cross-compiling. |
