mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-10 13:40:20 +01:00
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 @@ specifies modules in scope when evaluating SNIPPET."
|
||||||
#:fail-on-error? #t)))))
|
#:fail-on-error? #t)))))
|
||||||
(apply invoke
|
(apply invoke
|
||||||
(string-append #+tar "/bin/tar")
|
(string-append #+tar "/bin/tar")
|
||||||
"cvf" #$output
|
"cvfa" #$output
|
||||||
;; avoid non-determinism in the archive
|
;; avoid non-determinism in the archive
|
||||||
"--mtime=@0"
|
"--mtime=@0"
|
||||||
"--owner=root:0"
|
"--owner=root:0"
|
||||||
|
|
Loading…
Add table
Reference in a new issue