summaryrefslogtreecommitdiff
path: root/guix/gexp.scm
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2019-12-03 14:56:29 +0100
committerMarius Bakke <mbakke@fastmail.com>2019-12-05 17:59:03 +0100
commit326dc630941ca70c74b4e6e2b1a01f0d046890c2 (patch)
tree47030a32f4018b3e04b7cb28a605f5d6d5228d9f /guix/gexp.scm
parentc9bba9928aec988b0eaf505ae12042c1200811e9 (diff)
downloadguix-patches-326dc630941ca70c74b4e6e2b1a01f0d046890c2.tar
guix-patches-326dc630941ca70c74b4e6e2b1a01f0d046890c2.tar.gz
gexp: Unconditionally include (system base target) in 'compiled-modules'.
* guix/gexp.scm (compiled-modules): Remove conditional.
Diffstat (limited to 'guix/gexp.scm')
-rw-r--r--guix/gexp.scm7
1 files changed, 1 insertions, 6 deletions
diff --git a/guix/gexp.scm b/guix/gexp.scm
index a96592ac76..ffe4fc95c7 100644
--- a/guix/gexp.scm
+++ b/guix/gexp.scm
@@ -1386,14 +1386,9 @@ TARGET, a GNU triplet."
(ice-9 format)
(srfi srfi-1)
(srfi srfi-26)
+ (system base target)
(system base compile))
- ;; TODO: Inline this on the next rebuild cycle.
- (ungexp-splicing
- (if target
- (gexp ((use-modules (system base target))))
- (gexp ())))
-
(define (regular? file)
(not (member file '("." ".."))))