guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

13/14: gnu: patchelf: Update phase style.


From: Tobias Geerinckx-Rice
Subject: 13/14: gnu: patchelf: Update phase style.
Date: Tue, 20 Feb 2018 10:06:36 -0500 (EST)

nckx pushed a commit to branch core-updates
in repository guix.

commit c36615877ba866bda314356b03167c7f2d9b08d9
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Feb 20 04:58:14 2018 +0100

    gnu: patchelf: Update phase style.
    
    * gnu/packages/elf.scm (patchelf)[arguments]: Use MODIFY-PHASES syntax
    and INVOKE, and end phase with #t.
---
 gnu/packages/elf.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/elf.scm b/gnu/packages/elf.scm
index 876014a..f11cab7 100644
--- a/gnu/packages/elf.scm
+++ b/gnu/packages/elf.scm
@@ -127,14 +127,14 @@ Executable and Linkable Format (@dfn{ELF}).  This 
includes @command{ld},
          '()))
     (arguments
      (if (string-prefix? "arm" (or (%current-target-system) (%current-system)))
-         `(#:phases (alist-cons-after
-                     'unpack 'patch/rework-for-arm
-                     (lambda* (#:key inputs #:allow-other-keys)
-                       (let ((patch-file
-                              (assoc-ref inputs "patch/rework-for-arm")))
-                         (zero? (system* "patch" "--force" "-p1"
-                                         "--input" patch-file))))
-                     %standard-phases))
+         `(#:phases (modify-phases %standard-phases
+                      (add-after 'unpack 'patch/rework-for-arm
+                        (lambda* (#:key inputs #:allow-other-keys)
+                          (let ((patch-file
+                                 (assoc-ref inputs "patch/rework-for-arm")))
+                            (invoke "patch" "--force" "-p1"
+                                    "--input" patch-file)
+                            #t)))))
          '()))
 
     (home-page "http://nixos.org/patchelf.html";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]