From b14ce575526b8c4cb1ee512d3d8af9d921cbdce1 Mon Sep 17 00:00:00 2001 From: Collin Funk 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 + + 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 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 _a_LDFLAGS or _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.39.5