* pygnulib/GLImport.py (GLImport.actioncmd): Use '+=' instead of '=' to
append the string to the actioncmd instead of overwriting it.
+2024-03-19 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Fix incorrect assignment operator.
+ * pygnulib/GLImport.py (GLImport.actioncmd): Use '+=' instead of '=' to
+ append the string to the actioncmd instead of overwriting it.
+
2024-03-19 Bruno Haible <bruno@clisp.org>
gnulib-tool: Make it work in the test suite.
actioncmd += ' \\\n# --no-libtool'
actioncmd += ' \\\n# --macro-prefix=%s' % macro_prefix
if podomain:
- actioncmd = ' \\\n# --po-domain=%s' % podomain
+ actioncmd += ' \\\n# --po-domain=%s' % podomain
if witness_c_macro:
actioncmd += ' \\\n# --witness-c-macro=%s' % witness_c_macro
if vc_files == True: