From 2e49fb153dba0d0b18ae9bfa38fb8d7de0ab244a Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Mon, 14 Oct 2024 16:15:39 +0200 Subject: [PATCH] Fix typo: s/DEFINES_FILES/DEFINES_FILE The bison_target() and flex_target() have a single value DEFINES_FILE keyword. --- gersemi/command_invocation_dumpers/module_command_dumpers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gersemi/command_invocation_dumpers/module_command_dumpers.py b/gersemi/command_invocation_dumpers/module_command_dumpers.py index 0e9b12a..059566c 100644 --- a/gersemi/command_invocation_dumpers/module_command_dumpers.py +++ b/gersemi/command_invocation_dumpers/module_command_dumpers.py @@ -690,7 +690,7 @@ class WriteBasicPackageVersionFile(ArgumentAwareCommandInvocationDumper): class BisonTarget(ArgumentAwareCommandInvocationDumper): - one_value_keywords = ["COMPILE_FLAGS", "DEFINES_FILES", "VERBOSE", "REPORT_FILE"] + one_value_keywords = ["COMPILE_FLAGS", "DEFINES_FILE", "VERBOSE", "REPORT_FILE"] class DoxygenAddDocs(ArgumentAwareCommandInvocationDumper): @@ -710,7 +710,7 @@ class EnvModuleSwap(ArgumentAwareCommandInvocationDumper): class FlexTarget(ArgumentAwareCommandInvocationDumper): - one_value_keywords = ["COMPILE_FLAGS", "DEFINES_FILES"] + one_value_keywords = ["COMPILE_FLAGS", "DEFINES_FILE"] class GettextCreateTranslations(ArgumentAwareCommandInvocationDumper):