packages: 'patch-and-repack' compresses tarballs again.

* guix/packages.scm (patch-and-repack): Add missing "a" in "tar cvfa".
Fixes a regression introduced in
3e95125e9b whereby we'd always create
uncompressed tarballs.
This commit is contained in:
Ludovic Courtès 2018-07-26 22:58:30 +02:00
parent ac46a1c8e4
commit 28c4905b12
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 1 deletions

View File

@ -628,7 +628,7 @@ specifies modules in scope when evaluating SNIPPET."
#:fail-on-error? #t)))))
(apply invoke
(string-append #+tar "/bin/tar")
"cvf" #$output
"cvfa" #$output
;; avoid non-determinism in the archive
"--mtime=@0"
"--owner=root:0"