gnu: slurm: Allow builds on 32-bit platforms.
Fixes a regression introduced in
7c96befa52
whereby ./configure would fail
on 32-bit platforms due to 32-bit support being "deprecated".
* gnu/packages/parallel.scm (slurm)[arguments]: Pass
"--enable-deprecated" configure flag unless 'target-64bit?' returns
true.
This commit is contained in:
parent
6ba6a1c103
commit
bead6dcb58
1 changed files with 6 additions and 1 deletions
|
@ -32,6 +32,7 @@ (define-module (gnu packages parallel)
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module ((guix utils) #:select (target-64bit?))
|
||||
#:use-module (guix packages)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages admin)
|
||||
|
@ -158,7 +159,11 @@ (define-public slurm
|
|||
(string-append "--with-freeipmi=" (assoc-ref %build-inputs "freeipmi"))
|
||||
(string-append "--with-hwloc=" (assoc-ref %build-inputs "hwloc"))
|
||||
(string-append "--with-json=" (assoc-ref %build-inputs "json-c"))
|
||||
(string-append "--with-munge=" (assoc-ref %build-inputs "munge")))
|
||||
(string-append "--with-munge=" (assoc-ref %build-inputs "munge"))
|
||||
|
||||
;; 32-bit support is marked as deprecated and needs to be
|
||||
;; explicitly enabled.
|
||||
,@(if (target-64bit?) '() '("--enable-deprecated")))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'autoconf
|
||||
|
|
Loading…
Reference in a new issue