]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Add missing quotation mark to reminder.
authorCollin Funk <collin.funk1@gmail.com>
Mon, 1 Apr 2024 00:41:03 +0000 (17:41 -0700)
committerBruno Haible <bruno@clisp.org>
Mon, 1 Apr 2024 00:47:44 +0000 (02:47 +0200)
* pygnulib/GLImport.py (GLImport.execute): Add missing end quote around
file name in AC_CONFIG_FILES reminder.

ChangeLog
pygnulib/GLImport.py

index 182a8940397e0b9e31fe50de6c45c787df3b196f..6a2b0248322ea4f192697a9139f41d587b380220 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-03-31  Collin Funk  <collin.funk1@gmail.com>
+
+       gnulib-tool.py: Add missing quotation mark to reminder.
+       * pygnulib/GLImport.py (GLImport.execute): Add missing end quote around
+       file name in AC_CONFIG_FILES reminder.
+
 2024-03-31  Bruno Haible  <bruno@clisp.org>
 
        quotearg: Improve documentation.
index 1fc43bfdffeb974e7b8d5260ecfbc423deeef33a..294a8df9790aa0f02badef4bbe9bb8b888219754 100644 (file)
@@ -1455,7 +1455,7 @@ in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library.''')
         else:  # if makefile_am != 'Makefile.am'
             print('  - "include %s" from within "%s/Makefile.am",' % (source_makefile_am, sourcebase))
         if pobase:
-            print('  - add "%s/Makefile.in to AC_CONFIG_FILES in %s,' % (pobase, configure_ac))
+            print('  - add "%s/Makefile.in" to AC_CONFIG_FILES in %s,' % (pobase, configure_ac))
         if gentests:
             if tests_makefile_am == 'Makefile.am':
                 print('  - add "%s/Makefile" to AC_CONFIG_FILES in %s,' % (testsbase, configure_ac))