On 3/31/24 5:32 PM, Collin Funk wrote:
> The second is just a simple missing " character.

Here is a patching adding this character.

Collin
From 30d06b655a9a5172aab059ddab297bef7cccc2cd Mon Sep 17 00:00:00 2001
From: Collin Funk <[email protected]>
Date: Sun, 31 Mar 2024 17:41:03 -0700
Subject: [PATCH] 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.
---
 ChangeLog            | 6 ++++++
 pygnulib/GLImport.py | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 182a894039..6a2b024832 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-03-31  Collin Funk  <[email protected]>
+
+	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  <[email protected]>
 
 	quotearg: Improve documentation.
diff --git a/pygnulib/GLImport.py b/pygnulib/GLImport.py
index 1fc43bfdff..294a8df979 100644
--- a/pygnulib/GLImport.py
+++ b/pygnulib/GLImport.py
@@ -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))
-- 
2.44.0

Reply via email to