+2024-02-28 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Follow gnulib-tool changes, part 32.
+ Follow gnulib-tool change
+ 2018-10-22 Bruno Haible <bruno@clisp.org>
+ Fix failure of 'gnulib-tool --create-testdir' with all modules.
+ * pygnulib/GLTestDir.py (GLTestDir.execute): Exclude the 'timevar'
+ module from --create-testdir with all modules. Update comment.
+
2024-02-28 Collin Funk <collin.funk1@gmail.com>
gnulib-tool.py: Emit year range on file copyright notices.
--------------------------------------------------------------------------------
-commit 98993f9d1b2ed03007be9dbcdc6bd9fe2d49777b
-Author: Bruno Haible <bruno@clisp.org>
-Date: Mon Oct 22 20:32:41 2018 +0200
-
- Fix failure of 'gnulib-tool --create-testdir' with all modules.
-
- * gnulib-tool (func_create_testdir): Exclude 'timevar' module.
-
---------------------------------------------------------------------------------
-
commit 8b1d4a63e34f3893036d82f39c5680e845de5ddf
Author: Bruno Haible <bruno@clisp.org>
Date: Mon Sep 3 21:19:16 2018 +0200
if len(specified_modules) == 0:
# All modules together.
# Except config-h, which breaks all modules which use HAVE_CONFIG_H.
- # Except non-recursive-gnulib-prefix-hack, which represents a
- # nonstandard way of using Automake.
- # Except mountlist, which aborts the configuration on mingw.
- # Except lib-ignore, which leads to link errors when Sun C++ is used.
+ # Except non-recursive-gnulib-prefix-hack, which represents a nonstandard
+ # way of using Automake.
+ # Except timevar, which lacks the required file timevar.def.
+ # Except mountlist, which aborts the configuration on mingw. FIXME.
+ # Except lib-ignore, which leads to link errors when Sun C++ is used. FIXME.
specified_modules = self.modulesystem.list()
specified_modules = [module
for module in specified_modules
- if module not in ['config-h', 'non-recursive-gnulib-prefix-hack',
+ if module not in ['config-h', 'non-recursive-gnulib-prefix-hack', 'timevar',
'mountlist', 'lib-ignore']]
# Canonicalize the list of specified modules.