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/parallel.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/parallel.scm')
| -rw-r--r-- | gnu/packages/parallel.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm index a29428c7698..2d5ddfc1a9f 100644 --- a/gnu/packages/parallel.scm +++ b/gnu/packages/parallel.scm @@ -43,7 +43,7 @@ #:use-module (guix build-system python) #:use-module (guix build-system pyproject) #:use-module ((guix licenses) #:prefix license:) - #:use-module ((guix utils) #:select (target-64bit?)) + #:use-module ((guix utils) #:select (target-32bit?)) #:use-module (guix packages) #:use-module (guix utils) #:use-module (guix gexp) @@ -285,7 +285,7 @@ when jobs finish.") ;; 32-bit support is marked as deprecated and needs to be ;; explicitly enabled. - #$@(if (target-64bit?) '() '("--enable-deprecated"))) + #$@(if (target-32bit?) '("--enable-deprecated") '())) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-plugin-linker-flags |
