]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Tweak comment location.
authorBruno Haible <bruno@clisp.org>
Wed, 6 Mar 2024 10:59:11 +0000 (11:59 +0100)
committerBruno Haible <bruno@clisp.org>
Wed, 6 Mar 2024 10:59:11 +0000 (11:59 +0100)
* pygnulib/GLEmiter.py (GLEmiter.tests_Makefile_am): Move a comment.

ChangeLog
pygnulib/GLEmiter.py

index 2b4839a8d2e676d45496b5079a9adb213004ab78..62f367dfd7afd0b3e6dbde427fcab68188c0be12 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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.
index 1d1463851bf120dc01edb3ef7b2d99467378bf8f..9f573360e4e4213fdfbb6e033e5d891029df50cc 100644 (file)
@@ -1122,6 +1122,8 @@ AC_DEFUN([%V1%_LIBSOURCES], [
                     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?
@@ -1138,10 +1140,10 @@ AC_DEFUN([%V1%_LIBSOURCES], [
         #   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'