From: Collin Funk Date: Tue, 27 Feb 2024 10:45:16 +0000 (+0100) Subject: gnulib-tool.py: Small fix of part 27. X-Git-Tag: v1.0~368 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=bb09847b7d87d1c99a29f889372bc4771eb9d2bd;p=gnulib.git gnulib-tool.py: Small fix of part 27. * pygnulib/GLConfig.py (GLConfig.default): Add 'gnu_make' key which returns False. --- diff --git a/ChangeLog b/ChangeLog index ba1456b584..3827e10d15 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-02-27 Collin Funk + + gnulib-tool.py: Small fix of part 27. + * pygnulib/GLConfig.py (GLConfig.default): Add 'gnu_make' key which + returns False. + 2024-02-27 Collin Funk gnulib-tool.py: Follow gnulib-tool changes, part 30. diff --git a/pygnulib/GLConfig.py b/pygnulib/GLConfig.py index bdebf243cc..9ba5a3dca5 100644 --- a/pygnulib/GLConfig.py +++ b/pygnulib/GLConfig.py @@ -278,7 +278,7 @@ class GLConfig(object): return True elif key in ['modules', 'avoids', 'tests', 'incl_test_categories', 'excl_test_categories']: return list() - elif key in ['libtool', 'lgpl', 'conddeps', 'symbolic', 'lsymbolic', + elif key in ['libtool', 'lgpl', 'gnu_make', 'conddeps', 'symbolic', 'lsymbolic', 'libtests', 'dryrun']: return False elif key == 'vc_files':