reprobuild: don't use any build-time dependent values
Even taking the current year from the build system makes a build non-reproducible (if you run it again the next year). Change-Id: I4a2ef0fe997c20d1c8ec954378f46adb5aad04df Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158870 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
This commit is contained in:
parent
1d939b7822
commit
d2b0c48ca0
1 changed files with 2 additions and 1 deletions
|
@ -519,7 +519,8 @@ AC_DEFINE_UNQUOTED(LIBO_VERSION_MINOR,$LIBO_VERSION_MINOR)
|
|||
AC_DEFINE_UNQUOTED(LIBO_VERSION_MICRO,$LIBO_VERSION_MICRO)
|
||||
AC_DEFINE_UNQUOTED(LIBO_VERSION_PATCH,$LIBO_VERSION_PATCH)
|
||||
|
||||
LIBO_THIS_YEAR=`date +%Y`
|
||||
git_date=`git log -1 --pretty=format:"%cd" --date=format:'%Y' 2>&/dev/null`
|
||||
LIBO_THIS_YEAR=${git_date:-2023}
|
||||
AC_DEFINE_UNQUOTED(LIBO_THIS_YEAR,$LIBO_THIS_YEAR)
|
||||
|
||||
# replace backslashes, to get a valid c++ string
|
||||
|
|
Loading…
Reference in a new issue