mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: rdma-core: Use invoke.
* gnu/packages/linux.scm (rdma-core)[arguments]: Use invoke.
This commit is contained in:
parent
2ee42f7e32
commit
8c3101b877
1 changed files with 3 additions and 3 deletions
|
@ -3432,11 +3432,11 @@ (define-public rdma-core
|
|||
(modify-phases %standard-phases
|
||||
(replace 'build
|
||||
(lambda _
|
||||
(zero? (system* "ninja"
|
||||
"-j" (number->string (parallel-job-count))))))
|
||||
(invoke "ninja"
|
||||
"-j" (number->string (parallel-job-count)))))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(zero? (system* "ninja" "install")))))))
|
||||
(invoke "ninja" "install"))))))
|
||||
(native-inputs
|
||||
`(("ninja" ,ninja)
|
||||
("pkg-config" ,pkg-config)
|
||||
|
|
Loading…
Reference in a new issue