guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: xdotool: Use 'modify-phases'.


From: Efraim Flashner
Subject: 01/03: gnu: xdotool: Use 'modify-phases'.
Date: Fri, 19 Aug 2016 20:38:54 +0000 (UTC)

efraim pushed a commit to branch master
in repository guix.

commit c237480b0cb912ca95d2b8e757a6a2e15ef6f3c1
Author: Efraim Flashner <address@hidden>
Date:   Fri Aug 19 23:15:37 2016 +0300

    gnu: xdotool: Use 'modify-phases'.
    
    * gnu/packages/xdisorg.scm (xdotool)[arguments]: Use 'modify-phases'.
---
 gnu/packages/xdisorg.scm |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 659bce0..68d4dff 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -182,14 +182,14 @@ X11 (yet).")
     (arguments
      '(#:tests? #f ; Test suite requires a lot of black magic
        #:phases
-       (alist-replace 'configure
-                      (lambda* (#:key outputs #:allow-other-keys #:rest args)
-                        (setenv "PREFIX" (assoc-ref outputs "out"))
-                        (setenv "LDFLAGS" (string-append "-Wl,-rpath="
-                                               (assoc-ref
-                                                %outputs "out") "/lib"))
-                        (setenv "CC" "gcc"))
-                      %standard-phases)))
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda* (#:key outputs #:allow-other-keys #:rest args)
+             (setenv "PREFIX" (assoc-ref outputs "out"))
+             (setenv "LDFLAGS"
+                     (string-append "-Wl,-rpath="
+                                    (assoc-ref %outputs "out") "/lib"))
+             (setenv "CC" "gcc"))))))
     (native-inputs `(("perl" ,perl))) ; for pod2man
     (inputs `(("libx11" ,libx11)
               ("libxext" ,libxext)



reply via email to

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