diff options
author | Mark H Weaver <mhw@netris.org> | 2015-09-03 12:51:47 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-09-03 12:57:01 -0400 |
commit | 92226a470ddc980e54863632e5b179bf40444bd7 (patch) | |
tree | a1336ed5da129fcb33b8a51c0ff39602fb58702b /gnu/packages/make-bootstrap.scm | |
parent | 52c20d8e1517190ca5bfbaa9f83da17587b47e9c (diff) | |
download | guix-92226a470ddc980e54863632e5b179bf40444bd7.tar guix-92226a470ddc980e54863632e5b179bf40444bd7.tar.gz |
Build tarballs with deterministic file ordering.
* guix/packages.scm (patch-and-repack)[build],
gnu/system/install.scm (self-contained-tarball)[build],
gnu/packages/make-bootstrap.scm (tarball-package),
gnu/packages/admin.scm (isc-dhcp),
gnu/packages/video.scm (avidemux): Pass "--sort=name" to 'tar'.
Diffstat (limited to 'gnu/packages/make-bootstrap.scm')
-rw-r--r-- | gnu/packages/make-bootstrap.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm index 904aaedb73..d215a02ff0 100644 --- a/gnu/packages/make-bootstrap.scm +++ b/gnu/packages/make-bootstrap.scm @@ -629,7 +629,8 @@ for `sh' in $PATH, and without nscd, and with static NSS modules." ".tar.xz") "." ;; avoid non-determinism in the archive - "--mtime=@0" "--owner=root:0" "--group=root:0")))))))))) + "--sort=name" "--mtime=@0" + "--owner=root:0" "--group=root:0")))))))))) (define %bootstrap-binaries-tarball ;; A tarball with the statically-linked bootstrap binaries. |