From 58d670a258069957a2cbaffbf61559596a3f7fc9 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Mon, 27 Nov 2023 16:04:33 +0100 Subject: [PATCH] - Fix #964: config.h.in~ backup file in release tar balls. --- doc/Changelog | 3 +++ makedist.sh | 3 +++ 2 files changed, 6 insertions(+) diff --git a/doc/Changelog b/doc/Changelog index c424bd832..1bde6ebbb 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -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. diff --git a/makedist.sh b/makedist.sh index e9dd1c3b3..84f16d4ea 100755 --- a/makedist.sh +++ b/makedist.sh @@ -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 @@ -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" @@ -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