summaryrefslogtreecommitdiff
path: root/guix/scripts/pack.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-03-17 15:34:22 +0100
committerLudovic Courtès <ludo@gnu.org>2020-03-17 15:36:58 +0100
commitd8e98e853c781dbd9f0e3167daf67651ce7ed76b (patch)
tree56e36abb83fe31eca24effdb6b18812f00678832 /guix/scripts/pack.scm
parent2bc1a400aea97106c5ac8237a06908408e204164 (diff)
downloadpatches-d8e98e853c781dbd9f0e3167daf67651ce7ed76b.tar
patches-d8e98e853c781dbd9f0e3167daf67651ce7ed76b.tar.gz
scripts: Refer to (default-guile) instead of 'guile-2.2'.
This is a followup to b6bee63bed4f013064c0d902e7c8b83ed7514ade. * guix/scripts/environment.scm (guix-environment): Use (default-guile) instead of (canonical-package guile-2.2) when parameterizing '%guile-for-build'. * guix/scripts/pack.scm (guix-pack): Likewise. * guix/scripts/package.scm (guix-package*): Likewise. * guix/scripts/pull.scm (guix-pull): Likewise.
Diffstat (limited to 'guix/scripts/pack.scm')
-rw-r--r--guix/scripts/pack.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm
index 652b4c63c4..045fd1643e 100644
--- a/guix/scripts/pack.scm
+++ b/guix/scripts/pack.scm
@@ -1027,7 +1027,7 @@ Create a bundle of PACKAGE.\n"))
store
(if (assoc-ref opts 'bootstrap?)
%bootstrap-guile
- (canonical-package guile-2.2))
+ (default-guile))
(assoc-ref opts 'system)
#:graft? (assoc-ref opts 'graft?))))
(let* ((dry-run? (assoc-ref opts 'dry-run?))