Skip to content

Commit

Permalink
- Fix #964: config.h.in~ backup file in release tar balls.
Browse files Browse the repository at this point in the history
  • Loading branch information
wcawijngaards committed Nov 27, 2023
1 parent 15a9b0f commit 58d670a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions doc/Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
27 November 2023: Wouter
- Fix #964: config.h.in~ backup file in release tar balls.

24 November 2023: Yorgos
- Use 127.0.0.1 explicitly in tests to avoid delays and errors on
newer systems.
Expand Down
3 changes: 3 additions & 0 deletions makedist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,7 @@ if [ "$DOWIN" = "yes" ]; then
autoconf -f || error_cleanup "Autoconf failed."
autoheader -f || error_cleanup "Autoheader failed."
rm -r autom4te* || echo "ignored"
rm -f config.h.in~ || echo "ignore absence of config.h.in~ file."
fi

if test "`uname`" = "Linux"; then
Expand Down Expand Up @@ -514,6 +515,7 @@ info "Building configure script (autoreconf)."
autoreconf -f || error_cleanup "Autoconf failed."

rm -r autom4te* || error_cleanup "Failed to remove autoconf cache directory."
rm -f config.h.in~ || echo "ignore absence of config.h.in~ file."

info "Building lexer and parser."
echo "#include \"config.h\"" > util/configlexer.c || error_cleanup "Failed to create configlexer"
Expand Down Expand Up @@ -558,6 +560,7 @@ if [ "$RECONFIGURE" = "yes" ]; then
info "Rebuilding configure script (autoconf) snapshot."
autoreconf -f || error_cleanup "Autoconf failed."
rm -r autom4te* || error_cleanup "Failed to remove autoconf cache directory."
rm -f config.h.in~ || echo "ignore absence of config.h.in~ file."
fi

replace_all doc/README
Expand Down

0 comments on commit 58d670a

Please sign in to comment.