On Mon, Dec 15, 2025 at 03:19:01PM +0100, Bruno Haible via Bug reports for the GNU Texinfo documentation system wrote: > The CI today reports this failure: > > $ ./configure > $ make > $ make dist > ... > (cd po && make top_distdir=../texinfo-7.2.90.20251215 > distdir=../texinfo-7.2.90.20251215/po \ > am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) > make[3]: Entering directory '/home/runner/work/ci-check/ci-check/texinfo/po' > test -z "" || make > make[4]: Entering directory '/home/runner/work/ci-check/ci-check/texinfo/po' > make[4]: *** No rule to make target 'remove-potcdate.sed', needed by 'dist2'. > Stop. > make[4]: Leaving directory '/home/runner/work/ci-check/ci-check/texinfo/po' > make[3]: *** [Makefile:464: distdir] Error 2 > make[3]: Leaving directory '/home/runner/work/ci-check/ci-check/texinfo/po' > make[2]: *** [Makefile:2105: distdir-am] Error 1 > > The problem is that after the upgrade to gettext 0.26 > (commit ce7af6e1cff54ad2d9706d15d7f094244614a88a) > the commit 01f6740817f131baf77a05fe453ce5c54dda6c7c > removed po/remove-potcdate.sin and po_document/remove-potcdate.sin. > But it needs to add po/remove-potcdate.sed and po_document/remove-potcdate.sed > instead (from gettext-0.26/gettext-runtime/po/remove-potcdate.sed). > > Bruno
Thanks for the report. The problem was when I did the gettext upgrade, I checked for new files with "git status -u". However, as these files were generated, we had listed them in .gitignore and so they were not listed in the output from this command. I have remediated this in the recent commit dc360813bf4 (today's date).
