diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-12-03 14:56:29 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-12-05 17:59:03 +0100 |
commit | 326dc630941ca70c74b4e6e2b1a01f0d046890c2 (patch) | |
tree | 47030a32f4018b3e04b7cb28a605f5d6d5228d9f | |
parent | c9bba9928aec988b0eaf505ae12042c1200811e9 (diff) | |
download | guix-326dc630941ca70c74b4e6e2b1a01f0d046890c2.tar.gz |
gexp: Unconditionally include (system base target) in 'compiled-modules'.
* guix/gexp.scm (compiled-modules): Remove conditional.
-rw-r--r-- | guix/gexp.scm | 7 |
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 '("." "..")))) |