guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: gpsbabel: Use 'modify-phases'.


From: Efraim Flashner
Subject: 02/02: gnu: gpsbabel: Use 'modify-phases'.
Date: Tue, 16 Feb 2016 10:15:27 +0000

efraim pushed a commit to branch master
in repository guix.

commit c5a6e33b5659925f8c56d93ee97e846ef2c42d4b
Author: Efraim Flashner <address@hidden>
Date:   Tue Feb 16 12:13:01 2016 +0200

    gnu: gpsbabel: Use 'modify-phases'.
    
    * gnu/packages/gps.scm (gpsbabel)[arguments]: Use 'modify-phases'.
---
 gnu/packages/gps.scm |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/gps.scm b/gnu/packages/gps.scm
index 1e8f3af..fd045b1 100644
--- a/gnu/packages/gps.scm
+++ b/gnu/packages/gps.scm
@@ -49,12 +49,12 @@
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags '("--with-zlib=system")
-       #:phases (alist-cons-before
-                 'configure 'pre-configure
-                 (lambda _
-                   (chdir "gpsbabel"))
-                 ;; TODO: "make doc" requires Docbook & co.
-                 %standard-phases)
+       #:phases
+       (modify-phases %standard-phases
+        (add-before 'configure 'pre-configure
+                    (lambda _
+                      (chdir "gpsbabel"))))
+                    ;; TODO: "make doc" requires Docbook & co.
 
        ;; On i686, 'raymarine.test' fails because of a rounding error:
        ;; <http://hydra.gnu.org/build/133040>.  As a workaround, disable tests



reply via email to

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