Copied from Debian. From: Jérémy Bobbio Subject: Remove build date Bug-Debian: http://bugs.debian.org/782851 In order to make unzip build reproducibly, we remove the (already optional) build date from the binary. --- a/unix/unix.c +++ b/unix/unix.c @@ -1705,7 +1705,7 @@ #endif /* Sun */ #endif /* SGI */ -#ifdef __DATE__ +#if 0 " on ", __DATE__ #else "", "" >cgit logo index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/nix/libstore/local-store.cc
AgeCommit message (Expand)Author
2021-11-27daemon: Print the line whence we expect an integer....* nix/libstore/local-store.cc (LocalStore::getLineFromSubstituter): Include the malformed substituter stream line in the error message. Tobias Geerinckx-Rice
2021-11-25daemon: Read unsigned nar size and download size from substituter....Fixes <https://issues.guix.gnu.org/51983>. Reported by Tobias Geerinckx-Rice <me@tobias.gr>. * nix/libstore/local-store.cc (LocalStore::querySubstitutablePathInfos): Expect 'unsigned long long' for 'downloadSize' and 'narSize'. * tests/store.scm ("substitute query and large size"): New test. Ludovic Courtès