guix-commits
[Top][All Lists]
Advanced

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

branch core-updates updated: guix: Quote list of bootstrap scripts.


From: guix-commits
Subject: branch core-updates updated: guix: Quote list of bootstrap scripts.
Date: Wed, 23 Dec 2020 15:19:27 -0500

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new 7549c96  guix: Quote list of bootstrap scripts.
7549c96 is described below

commit 7549c963c4fe295bc12839b39d5e6e8cac755940
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Dec 23 21:17:46 2020 +0100

    guix: Quote list of bootstrap scripts.
    
    This is a follow-up to commit 9cfc93be30c516fd6fa32915c61c06e03f23a011.
    
    * guix/build-system/gnu.scm (gnu-build, gnu-cross-build): Quote the list of
    default bootstrap scripts.
---
 guix/build-system/gnu.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm
index 2fed773..abff7d6 100644
--- a/guix/build-system/gnu.scm
+++ b/guix/build-system/gnu.scm
@@ -332,7 +332,7 @@ standard packages used as implicit inputs of the GNU build 
system."
                     #:key (guile #f)
                     (outputs '("out"))
                     (search-paths '())
-                    (bootstrap-scripts %bootstrap-scripts)
+                    (bootstrap-scripts (list 'quote %bootstrap-scripts))
                     (configure-flags ''())
                     (make-flags ''())
                     (out-of-source? #f)
@@ -492,7 +492,7 @@ is one of `host' or `target'."
                           (search-paths '())
                           (native-search-paths '())
 
-                          (bootstrap-scripts %bootstrap-scripts)
+                          (bootstrap-scripts (list 'quote %bootstrap-scripts))
                           (configure-flags ''())
                           (make-flags ''())
                           (out-of-source? #f)



reply via email to

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