From 8419e9780e9775e91842a546bbddde542a557bd6 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Fri, 19 Sep 2025 09:46:34 +0200 Subject: [PATCH] - Fix to remove configure~ from release tarballs. --- doc/Changelog | 3 +++ makedist.sh | 3 +++ 2 files changed, 6 insertions(+) diff --git a/doc/Changelog b/doc/Changelog index ce8879ee0..6b4ad6662 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +19 September 2025: Wouter + - Fix to remove configure~ from release tarballs. + 18 September 2025: Wouter - Tag for 1.24.0 release. Includes the fixes below after rc1. The repository continues with version 1.24.1. diff --git a/makedist.sh b/makedist.sh index b6b593431..008e2ce4c 100755 --- a/makedist.sh +++ b/makedist.sh @@ -440,6 +440,7 @@ if [ "$DOWIN" = "yes" ]; then autoheader -f || error_cleanup "Autoheader failed." rm -r autom4te* || echo "ignored" rm -f config.h.in~ || echo "ignore absence of config.h.in~ file." + rm -f configure~ || echo "ignore absence of configure~ file." fi if test "`uname`" = "Linux"; then @@ -621,6 +622,7 @@ 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." +rm -f configure~ || echo "ignore absence of configure~ file." info "Building lexer and parser." echo "#include \"config.h\"" > util/configlexer.c || error_cleanup "Failed to create configlexer" @@ -666,6 +668,7 @@ if [ "$RECONFIGURE" = "yes" ]; then 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." + rm -f configure~ || echo "ignore absence of configure~ file." fi replace_all doc/README -- 2.47.3