guix-commits
[Top][All Lists]
Advanced

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

01/06: gnu: rottlog: Use 'modify-phases'.


From: Ludovic Courtès
Subject: 01/06: gnu: rottlog: Use 'modify-phases'.
Date: Wed, 7 Sep 2016 09:50:03 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 8dc0ecae6c92d050db2e33ab7b6e3ec6609fb321
Author: Ludovic Courtès <address@hidden>
Date:   Wed Sep 7 10:28:05 2016 +0200

    gnu: rottlog: Use 'modify-phases'.
    
    * gnu/packages/admin.scm (rottlog)[arguments]: Use 'modify-phases'.
---
 gnu/packages/admin.scm |    9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 474c0d7..86fa784 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -735,11 +735,10 @@ over ssh connections.")
                                               (assoc-ref %outputs "out")
                                               "/etc")
                                "--localstatedir=/var")
-       #:phases (alist-cons-after
-                 'install 'install-info
-                 (lambda _
-                   (zero? (system* "make" "install-info")))
-                 %standard-phases)))
+       #:phases (modify-phases %standard-phases
+                  (add-after 'install 'install-info
+                    (lambda _
+                      (zero? (system* "make" "install-info")))))))
     (native-inputs `(("texinfo" ,texinfo)
                      ("util-linux" ,util-linux))) ; for 'cal'
     (home-page "http://www.gnu.org/software/rottlog/";)



reply via email to

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