gnu: patchelf: Update phase style.
* gnu/packages/elf.scm (patchelf)[arguments]: Use MODIFY-PHASES syntax and INVOKE, and end phase with #t.
This commit is contained in:
parent
273cab96d7
commit
c36615877b
|
@ -127,14 +127,14 @@ Executable and Linkable Format (@dfn{ELF}). This includes @command{ld},
|
||||||
'()))
|
'()))
|
||||||
(arguments
|
(arguments
|
||||||
(if (string-prefix? "arm" (or (%current-target-system) (%current-system)))
|
(if (string-prefix? "arm" (or (%current-target-system) (%current-system)))
|
||||||
`(#:phases (alist-cons-after
|
`(#:phases (modify-phases %standard-phases
|
||||||
'unpack 'patch/rework-for-arm
|
(add-after 'unpack 'patch/rework-for-arm
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((patch-file
|
(let ((patch-file
|
||||||
(assoc-ref inputs "patch/rework-for-arm")))
|
(assoc-ref inputs "patch/rework-for-arm")))
|
||||||
(zero? (system* "patch" "--force" "-p1"
|
(invoke "patch" "--force" "-p1"
|
||||||
"--input" patch-file))))
|
"--input" patch-file)
|
||||||
%standard-phases))
|
#t)))))
|
||||||
'()))
|
'()))
|
||||||
|
|
||||||
(home-page "http://nixos.org/patchelf.html")
|
(home-page "http://nixos.org/patchelf.html")
|
||||||
|
|
Loading…
Reference in New Issue