pack: Adjust test to earlier <compressor> changes.
This is a followup to 5a0997ef7f
, which
broke the "self-contained tarball" test.
* tests/pack.scm (%gzip-compressor): Add 'list' in third field.
This commit is contained in:
parent
ac815ecd63
commit
152b167cfa
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
;; Compressor that uses the bootstrap 'gzip'.
|
;; Compressor that uses the bootstrap 'gzip'.
|
||||||
((@ (guix scripts pack) compressor) "gzip"
|
((@ (guix scripts pack) compressor) "gzip"
|
||||||
"gz"
|
"gz"
|
||||||
#~(#+(file-append %bootstrap-coreutils&co "/bin/gzip") "-6n")))
|
#~(list #+(file-append %bootstrap-coreutils&co "/bin/gzip") "-6n")))
|
||||||
|
|
||||||
(define %tar-bootstrap %bootstrap-coreutils&co)
|
(define %tar-bootstrap %bootstrap-coreutils&co)
|
||||||
|
|
||||||
|
|
Reference in a new issue