* top/maint.mk (sc_readme_link_install): Change the value of the
variable in_vc_files to contain a pattern for the README file.
(sc_readme_link_copying): Likewise.
Previously, the above rules always passed, because the generated
list of files was empty. Bug introduced when adding the rules
in commit
53b4bf3018.
+2023-09-24 Bernhard Voelker <mail@bernhard-voelker.de>
+
+ maintainer-makefile: Fix syntax-check rules wrt README.
+ * top/maint.mk (sc_readme_link_install): Change the value of the
+ variable in_vc_files to contain a pattern for the README file.
+ (sc_readme_link_copying): Likewise.
+ Previously, the above rules always passed, because the generated
+ list of files was empty. Bug introduced when adding the rules
+ in commit 53b4bf3018.
+
2023-09-22 Bruno Haible <bruno@clisp.org>
striconveh, *vasnprintf, vasnwprintf: Make more virtual-memory friendly.
sc_readme_link_install:
@require='INSTALL' \
- in_vc_files='$(top_srcdir)/README$$' \
+ in_vc_files='^README$$' \
halt='The README file should refer to INSTALL' \
$(_sc_search_regexp)
sc_readme_link_copying:
@require='COPYING' \
- in_vc_files='$(top_srcdir)/README$$' \
+ in_vc_files='^README$$' \
halt='The README file should refer to COPYING[.LESSER]' \
$(_sc_search_regexp)