summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/pack.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pack.scm b/tests/pack.scm
index e8455b4f37a..8564939ee13 100644
--- a/tests/pack.scm
+++ b/tests/pack.scm
@@ -1,5 +1,5 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
3;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> 3;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
4;;; 4;;;
5;;; This file is part of GNU Guix. 5;;; This file is part of GNU Guix.
@@ -52,7 +52,7 @@
52 ;; Compressor that uses the bootstrap 'gzip'. 52 ;; Compressor that uses the bootstrap 'gzip'.
53 ((@ (guix scripts pack) compressor) "gzip" 53 ((@ (guix scripts pack) compressor) "gzip"
54 "gz" 54 "gz"
55 #~(#+(file-append %bootstrap-coreutils&co "/bin/gzip") "-6n"))) 55 #~(list #+(file-append %bootstrap-coreutils&co "/bin/gzip") "-6n")))
56 56
57(define %tar-bootstrap %bootstrap-coreutils&co) 57(define %tar-bootstrap %bootstrap-coreutils&co)
58 58