+2024-03-06 Bruno Haible <bruno@clisp.org>
+
+ gnulib-tool.py: Tweak comment location.
+ * pygnulib/GLEmiter.py (GLEmiter.tests_Makefile_am): Move a comment.
+
2024-03-06 Collin Funk <collin.funk1@gmail.com>
gnulib-tool.py: Follow gnulib-tool changes, part 43.
emit += '%s += %s\n' % (dictionary['var'], val)
dictionary.pop('var')
+ emit += '\n'
+
# Insert a '-Wno-error' option in the compilation commands emitted by
# Automake, between $(AM_CPPFLAGS) and before the reference to @CFLAGS@.
# Why?
# CFLAGS, they have asked for errors, they will get errors. But they have
# no right to complain about these errors, because Gnulib does not support
# '-Werror'.
- emit += '\n'
emit += 'CFLAGS = @GL_CFLAG_ALLOW_WARNINGS@ @CFLAGS@\n'
emit += 'CXXFLAGS = @GL_CXXFLAG_ALLOW_WARNINGS@ @CXXFLAGS@\n'
emit += '\n'
+
emit += 'AM_CPPFLAGS = \\\n'
if for_test:
emit += ' -DGNULIB_STRICT_CHECKING=1 \\\n'