diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2017-03-17 17:37:00 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2017-03-17 23:25:53 +0100 |
| commit | 48b444304e206c35cf2c8e0d87a4711f1aac4fd4 (patch) | |
| tree | 9dbf39beb8df6b5cb7a926ab13dbd3ff89102264 /tests/pack.scm | |
| parent | 7c78beb33cbed12ac062060b0ea898583b9430b0 (diff) | |
pack: Move absolute file name to <compressor>.
* guix/scripts/pack.scm (<compressor>)[package]: Remove.
[command]: Document as being a gexp with an absolute file name.
(%compressors): Adjust accordingly.
(self-contained-tarball): Simplify PATH expression. Move 'string-join'
for the compressor command on the build side.
(docker-image): Simplify PATH expression.
* tests/pack.scm (%gzip-compressor): Adjust accordingly.
Diffstat (limited to 'tests/pack.scm')
| -rw-r--r-- | tests/pack.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/pack.scm b/tests/pack.scm index de9ef8e6ab3..eb643c3229f 100644 --- a/tests/pack.scm +++ b/tests/pack.scm | |||
| @@ -42,7 +42,8 @@ | |||
| 42 | (define %gzip-compressor | 42 | (define %gzip-compressor |
| 43 | ;; Compressor that uses the bootstrap 'gzip'. | 43 | ;; Compressor that uses the bootstrap 'gzip'. |
| 44 | ((@ (guix scripts pack) compressor) "gzip" | 44 | ((@ (guix scripts pack) compressor) "gzip" |
| 45 | %bootstrap-coreutils&co "gz" '("gzip" "-6n"))) | 45 | "gz" |
| 46 | #~(#+(file-append %bootstrap-coreutils&co "/bin/gzip") "-6n"))) | ||
| 46 | 47 | ||
| 47 | (define %tar-bootstrap %bootstrap-coreutils&co) | 48 | (define %tar-bootstrap %bootstrap-coreutils&co) |
| 48 | 49 | ||
