diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-12-06 05:36:40 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-12-06 05:36:40 +0000 |
commit | fc4c24864a0672fce04f79abe76586ae487c104d (patch) | |
tree | cf54fa4ac965903dd98e360de96bd1640b5a32e6 /resources/scripts/helpers/build/release/tobuild | |
parent | 4f4ec55f08d55acadd6723a54db638bd5ef04484 (diff) | |
download | librebootfr-fc4c24864a0672fce04f79abe76586ae487c104d.tar.gz librebootfr-fc4c24864a0672fce04f79abe76586ae487c104d.zip |
Revert "Revert "grub: build reproducibly""
This reverts commit 6278d578f6f47ae2d2742b95c99df087a06d0e90.
Diffstat (limited to 'resources/scripts/helpers/build/release/tobuild')
-rwxr-xr-x | resources/scripts/helpers/build/release/tobuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/resources/scripts/helpers/build/release/tobuild b/resources/scripts/helpers/build/release/tobuild index da1b6d94..bc1f6dd8 100755 --- a/resources/scripts/helpers/build/release/tobuild +++ b/resources/scripts/helpers/build/release/tobuild @@ -26,9 +26,11 @@ set -u -e if [ -f "version" ]; then # _src release archive is being used version="$(cat version)" + versiondate="$(cat versiondate)" else # git repo is being used version="$(git describe --tags HEAD)" + versiondate="$(git show -s --format=%ct)" fi versiondir="release/${version}" distname="libreboot_${version}_tobuild" @@ -84,6 +86,8 @@ fi # include version information printf '%s\n' "${version}" >"${distdir}/version" +# include version date information +printf '%s\n' "${versiondate}" >"${distdir}/versiondate" # that is all. now tar it up (cd "${versiondir}/" && tar -c "${distname}/" | xz -9e >"${distname}.tar.xz") |