Skip to content

Commit

Permalink
- Fix for version generation race condition that ignored changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
wcawijngaards committed Aug 28, 2023
1 parent 3795e37 commit 85ee528
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions doc/Changelog
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
8 changes: 4 additions & 4 deletions makedist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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."

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 85ee528

Please sign in to comment.