guix-commits
[Top][All Lists]
Advanced

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

branch wip-build-systems-gexp updated: squash! build-system: Rewrite usi


From: guix-commits
Subject: branch wip-build-systems-gexp updated: squash! build-system: Rewrite using gexps
Date: Sun, 07 Mar 2021 10:04:31 -0500

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

civodul pushed a commit to branch wip-build-systems-gexp
in repository guix.

The following commit(s) were added to refs/heads/wip-build-systems-gexp by this 
push:
     new cc91067  squash! build-system: Rewrite using gexps
cc91067 is described below

commit cc9106795fa0119af4ffaab66eec433f2fc1e271
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Mar 7 16:04:16 2021 +0100

    squash! build-system: Rewrite using gexps
---
 guix/build-system/copy.scm | 2 +-
 guix/build-system/dune.scm | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/guix/build-system/copy.scm b/guix/build-system/copy.scm
index 3e914da..483fcaf 100644
--- a/guix/build-system/copy.scm
+++ b/guix/build-system/copy.scm
@@ -101,7 +101,7 @@
   (define builder
     (with-imported-modules imported-modules
       #~(begin
-          (use-modules ,@modules)
+          (use-modules #$@modules)
 
           #$(with-build-variables inputs outputs
               #~(copy-build #:source #+source
diff --git a/guix/build-system/dune.scm b/guix/build-system/dune.scm
index 0f54064..620b83f 100644
--- a/guix/build-system/dune.scm
+++ b/guix/build-system/dune.scm
@@ -111,9 +111,9 @@ provides a 'setup.ml' file as its build system."
   (define builder
     (with-imported-modules imported-modules
       #~(begin
-          (use-modules ,@modules)
+          (use-modules #$@modules)
           (dune-build #:source #$source
-                      #:system ,system
+                      #:system #$system
                       #:outputs (list #$@(map (lambda (name)
                                                 #~(cons #$name
                                                         (ungexp output name)))



reply via email to

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