* pygnulib/GLImport.py (GLImport.gnulib_cache): Convert Python bools to
lowercase before printing.
+2024-03-23 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Don't print Python bools in gnulib-cache.m4.
+ * pygnulib/GLImport.py (GLImport.gnulib_cache): Convert Python bools to
+ lowercase before printing.
+
2024-03-23 Bruno Haible <bruno@clisp.org>
gnulib-tool.py: Don't unnecessarily run configure && make in testdirs.
emit += 'gl_PO_DOMAIN([%s])\n' % podomain
emit += 'gl_WITNESS_C_MACRO([%s])\n' % witness_c_macro
if vc_files != None:
- emit += 'gl_VC_FILES([%s])\n' % vc_files
+ # Convert Python bools to shell (True -> true).
+ emit += 'gl_VC_FILES([%s])\n' % str(vc_files).lower()
return constants.nlconvert(emit)
def gnulib_comp(self, filetable, gentests):