From: W.C.A. Wijngaards Date: Mon, 28 Aug 2023 11:25:04 +0000 (+0200) Subject: - Fix for version generation race condition that ignored changes. X-Git-Tag: release-1.19.0rc1~62 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=85ee5284f55713b86199ad3f1c80e7f904ce8b7a;p=thirdparty%2Funbound.git - Fix for version generation race condition that ignored changes. --- diff --git a/doc/Changelog b/doc/Changelog index a7c9c4002..71df37ed1 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +28 August 2023: Wouter + - Fix for version generation race condition that ignored changes. + 25 August 2023: Wouter - Fix compile error on NetBSD in util/netevent.h. diff --git a/makedist.sh b/makedist.sh index 7fb69630e..e9dd1c3b3 100755 --- a/makedist.sh +++ b/makedist.sh @@ -358,8 +358,8 @@ if [ "$DOWIN" = "yes" ]; then replace_version "configure.ac" "$version" "$version2" version="$version2" info "Rebuilding configure script (autoconf) snapshot." - autoconf || error_cleanup "Autoconf failed." - autoheader || error_cleanup "Autoheader failed." + autoconf -f || error_cleanup "Autoconf failed." + autoheader -f || error_cleanup "Autoheader failed." rm -r autom4te* || echo "ignored" fi @@ -511,7 +511,7 @@ if [ `uname -s | grep -i -c darwin` -ne 0 ]; then fi info "Building configure script (autoreconf)." -autoreconf || error_cleanup "Autoconf failed." +autoreconf -f || error_cleanup "Autoconf failed." rm -r autom4te* || error_cleanup "Failed to remove autoconf cache directory." @@ -556,7 +556,7 @@ fi if [ "$RECONFIGURE" = "yes" ]; then info "Rebuilding configure script (autoconf) snapshot." - autoreconf || error_cleanup "Autoconf failed." + autoreconf -f || error_cleanup "Autoconf failed." rm -r autom4te* || error_cleanup "Failed to remove autoconf cache directory." fi