Improve reproducible builds.

Use a SOURCE_DATA_EPOCH friendly date.
Suggested by @fasterit in #476.
This commit is contained in:
Hisham 2016-05-04 15:34:49 -03:00
parent fa1b5d1e2e
commit c37be409a9
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@
AC_PREREQ(2.65)
AC_INIT([htop],[2.0.1],[hisham@gobolinux.org])
year=$(date +%Y)
SOURCE_DATE_EPOCH="${SOURCE_DATE_EPOCH:-$(date +%s)}"
year=$(date -u -d "@$SOURCE_DATE_EPOCH" "+%Y" 2>/dev/null || date -u -r "$SOURCE_DATE_EPOCH" "+%Y" 2>/dev/null || date -u "+%Y")
# The following two lines are required by hwloc scripts
AC_USE_SYSTEM_EXTENSIONS