From dbd0f01503761ce98d62f62c866a310eeb28647f Mon Sep 17 00:00:00 2001 From: Bernhard Voelker Date: Mon, 1 Jan 2024 21:35:18 +0100 Subject: [PATCH 1/4] maint: adjust make target 'gnulib-sync' wrt/ autogen and autopull Since gnulib update in findutils commit f293f5da80f9, there are more files the make target 'gnulib-sync' alias 'update-gnulib-to-latest' needs to copy. * Makefile.am (gnulib-sync): Use 'fdl.texi' from gnulib now as it is identical to 'fdl-1.3.texi'. Copy autogen.sh, autopull.sh, bootstrap-funclib.sh and bootstrap from the 'gnulib/top' directory. --- Makefile.am | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 2019b0fe..fbb5cd4c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -110,10 +110,14 @@ gnulib-sync update-gnulib-to-latest: && { echo "error: tree is dirty" >&2; exit 1; } || : \ && git submodule foreach git pull origin master \ && cp -v gnulib/doc/COPYINGv3 COPYING \ - && cp -v gnulib/doc/fdl-1.3.texi doc/fdl.texi \ - && cp -v gnulib/build-aux/bootstrap bootstrap \ + && cp -v gnulib/doc/fdl.texi doc/fdl.texi \ + && cp -v gnulib/top/autogen.sh autogen.sh \ + && cp -v gnulib/top/autopull.sh autopull.sh \ + && cp -v gnulib/top/bootstrap bootstrap \ + && cp -v gnulib/top/bootstrap-funclib.sh bootstrap-funclib.sh \ && cp -v gnulib/tests/init.sh tests/init.sh \ - && git status --short -- gnulib COPYING doc/fdl.texi bootstrap \ + && git status --short -- gnulib COPYING doc/fdl.texi autogen.sh \ + autopull.sh bootstrap bootstrap-funclib.sh tests/init.sh \ tests/init.sh \ ) -- 2.43.0