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:
parent
ac46a1c8e4
commit
28c4905b12
1 changed files with 1 additions and 1 deletions
|
@ -628,7 +628,7 @@ (define (first-file directory)
|
|||
#: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"
|
||||
|
|
Loading…
Reference in a new issue