diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-07-26 22:58:30 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-07-26 22:58:30 +0200 |
commit | 28c4905b123e7de85e5d2b654f4d15289625f2c0 (patch) | |
tree | db05df00abd43489ac124610e958c90836c9649f /guix/packages.scm | |
parent | ac46a1c8e465df81d661632a273d07443aefa24e (diff) |
packages: 'patch-and-repack' compresses tarballs again.
* guix/packages.scm (patch-and-repack): Add missing "a" in "tar cvfa".
Fixes a regression introduced in
3e95125e9bd0676d4a9add9105217ad3eaef3ff0 whereby we'd always create
uncompressed tarballs.
Diffstat (limited to 'guix/packages.scm')
-rw-r--r-- | guix/packages.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index 3d9f281b74..01045ded07 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -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" |