+2024-02-18 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Fix function call on incorrect object.
+ * pygnulib/GLImport.py: Call checkInclTestCategory on the
+ GLConfig member instead of the GLImport object itself.
+ * pygnulib/__init__.py: Update copyright dates.
+ * pygnulib/constants.py: Update copyright dates.
+
2024-02-18 Bruno Haible <bruno@clisp.org>
maint.mk: Add more comments.
modules = self.cache.getModules()
# If user tries to apply conddeps and TESTS['tests'] together.
- if self.checkInclTestCategory(TESTS['tests']) and self.config['conddeps']:
+ if self.config.checkInclTestCategory(TESTS['tests']) and self.config['conddeps']:
raise GLError(10, None)
# Update configuration dictionary.
Texinfo), assorted configuration scripts, and more. The goal is to provide all
the common infrastructure needed by GNU packages.'''
-__copyright__ = '2012-2022 Free Software Foundation, Inc.'
+__copyright__ = '2012-2024 Free Software Foundation, Inc.'
__author__ = 'Dmitry Selyutin'
__license__ = 'GNU GPLv3+'
'Dmitry Selyutin',
]
__license__ = 'GNU GPLv3+'
-__copyright__ = '2002-2022 Free Software Foundation, Inc.'
+__copyright__ = '2002-2024 Free Software Foundation, Inc.'
#===============================================================================