Skip to content
Snippets Groups Projects
Commit 307acfed authored by Ondřej Surý's avatar Ondřej Surý
Browse files

Get release-date from first NEWS entry instead of modification time of configure.ac

parent f3eb13a8
No related branches found
No related tags found
No related merge requests found
......@@ -13,8 +13,8 @@ AX_SET_VERSION_INFO
# Automatically update release date based on configure.ac date
AS_CASE([$host_os],
[linux*],[release_date=`date +"%Y-%m-%d" -r ${srcdir}/configure.ac`],
[*],[release_date=$(date -r "$(stat -f %m ${srcdir}/configure.ac)" +"%Y-%m-%d")])
[linux*],[release_date=$(sed -n 's/^Knot DNS .* (\(.*\))/\1/p;q;' ${srcdir}/NEWS)],
[*],[release_date=$(sed -n 's/^Knot DNS .* (\(.*\))/\1/p;q;' ${srcdir}/NEWS)])
AC_SUBST([RELEASE_DATE], $release_date)
# Set compiler compatibility flags
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment