summaryrefslogtreecommitdiffstats
path: root/support/download
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2016-01-02 12:35:49 +0100
committerPeter Korsgaard <peter@korsgaard.com>2016-01-03 21:50:38 +0100
commit76b51f90c0e393349dd0c71d7e6cf82fbc094282 (patch)
treeb3eb4d9216199e726c79d3bd52b0842df36a47e2 /support/download
parent9c4072348960d99d39f2cf47ff022f2d3711962e (diff)
downloadbuildroot-76b51f90c0e393349dd0c71d7e6cf82fbc094282.tar.gz
buildroot-76b51f90c0e393349dd0c71d7e6cf82fbc094282.zip
support/download: generate reproducible Hg archives
When hg directly creates the output file, the hash for that file changes everytime. However, if we just tell hg to output the archive on stdout and we do the redirect to the file, then the archive is reproducible. (The reason is that in the first case, a temporary file is created and then compressed, and gzip is adding the filename and its timestamp in the gzip header, while in the second case, there is no temporary file, and thus no timestamp and thus it is reproducible.) Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Yegor Yefremov <yegorslists@googlemail.com> Tested-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'support/download')
-rwxr-xr-xsupport/download/hg2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/download/hg b/support/download/hg
index 5bdbbc82cd..25cb4e9d35 100755
--- a/support/download/hg
+++ b/support/download/hg
@@ -35,4 +35,4 @@ _hg clone ${verbose} --noupdate "'${repo}'" "'${basename}'"
_hg archive ${verbose} --repository "'${basename}'" --type tgz \
--prefix "'${basename}'" --rev "'${cset}'" \
- "'${output}'"
+ - >"${output}"
OpenPOWER on IntegriCloud