* builds/meson/parse_modules_cfg.py: Handle `gxvalid` and `otvalid`.

These need a name mapping similar to what was done for other modules,
or linking will fail.
apodtele-master-patch-68578
Jan Alexander Steffens (heftig) 2 years ago committed by Werner Lemberg
parent 79a8201e6e
commit 23e60caeef
  1. 6
      builds/meson/parse_modules_cfg.py

@ -97,8 +97,12 @@ def generate_ftmodule(lists):
for module in lists["AUX_MODULES"]:
if module in ("psaux", "psnames", "otvalid", "gxvalid"):
name = {
"gxvalid": "gxv",
"otvalid": "otv",
}.get(module, module)
result += (
"FT_USE_MODULE( FT_Module_Class, %s_module_class )\n" % module
"FT_USE_MODULE( FT_Module_Class, %s_module_class )\n" % name
)
result += "/* EOF */\n"

Loading…
Cancel
Save