guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu: Fix guile-for-guile-emacs builder.


From: guix-commits
Subject: 01/05: gnu: Fix guile-for-guile-emacs builder.
Date: Wed, 26 Jul 2023 05:51:37 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit d979197eaf10883e02c53b87f8e0d14bf254c525
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Wed Jul 26 10:13:35 2023 +0100

    gnu: Fix guile-for-guile-emacs builder.
    
    I think this broke in c4c08775a820868059b59c68d4dfd6be0c9d9010.
    
    * gnu/packages/guile.scm (guile-for-guile-emacs)[arguments]: Switch to gexp
    for phases.
---
 gnu/packages/guile.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 1d36e3ee2a..414aafaf26 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -603,8 +603,8 @@ GNU@tie{}Guile.  Use the @code{(ice-9 readline)} module and 
call its
                   "1l7ik4q4zk7vq4m3gnwizc0b64b1mdr31hxqlzxs94xaf2lvi7s2"))))
       (arguments
        (substitute-keyword-arguments (package-arguments guile-2.2)
-         ((#:phases phases '%standard-phases)
-          `(modify-phases ,phases
+         ((#:phases phases)
+          #~(modify-phases #$phases
              (replace 'bootstrap
                (lambda _
                  ;; Disable broken tests.
@@ -617,8 +617,7 @@ GNU@tie{}Guile.  Use the @code{(ice-9 readline)} module and 
call its
                     (string-append "#;" m)))
 
                  (patch-shebang "build-aux/git-version-gen")
-                 (invoke "sh" "autogen.sh")
-                 #t))))))
+                 (invoke "sh" "autogen.sh")))))))
       (native-inputs
        (modify-inputs (package-native-inputs guile-2.2)
          (prepend autoconf



reply via email to

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