guix-commits
[Top][All Lists]
Advanced

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

08/09: gnu: efl: Use 'modify-phases'.


From: Efraim Flashner
Subject: 08/09: gnu: efl: Use 'modify-phases'.
Date: Mon, 18 Jul 2016 12:28:58 +0000 (UTC)

efraim pushed a commit to branch master
in repository guix.

commit cff826ba05a418235b5f7fd45371e63e5e482c4d
Author: Efraim Flashner <address@hidden>
Date:   Mon Jul 18 14:40:55 2016 +0300

    gnu: efl: Use 'modify-phases'.
    
    * gnu/packages/enlightenment.scm (efl)[arguments]: Use 'modify-phases'.
---
 gnu/packages/enlightenment.scm |   11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index f8117ac..a8187f8 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -116,12 +116,11 @@
     (arguments
      `(#:configure-flags '("--disable-silent-rules")
        #:phases
-       (alist-cons-before
-        'configure 'patch-config-files
-        (lambda _
-          (substitute* "po/Makefile.in.in"
-            (("/bin/sh") (which "bash"))))
-        %standard-phases)))
+       (modify-phases %standard-phases
+         (add-before 'configure 'patch-config-files
+           (lambda _
+             (substitute* "po/Makefile.in.in"
+                          (("/bin/sh") (which "bash"))))))))
     (home-page "http://www.enlightenment.org";)
     (synopsis "Enlightenment Foundation Libraries")
     (description



reply via email to

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