Re: [docs] [PATCH v2 3/4] tools: add gen-doc-links to generate documentation link flags
"Antonin Godard" <[email protected]> Fri, 17 Jul 2026 10:38:37 +0200
| Newsgroups | org.yoctoproject.lists.docs |
|---|---|
| Message-ID | <[email protected]> |
Hi,
On Thu Jul 16, 2026 at 2:18 PM CEST, Antonin Godard via lists.yoctoproject.org wrote:
[...]
> +def main():
> + args = parse_arguments()
> +
> + yocto_docs_dict = {}
> +
> + if not args.yocto_docs_inv.exists():
> + print(f"yocto-docs inventory not found at {args.yocto_docs_inv}, "
> + "use the --yocto-docs-inv option or set YOCTO_DOCS_INV_PATH "
> + "in your environment")
> + sys.exit(0)
> +
> + if not args.bitbake_inv.exists():
> + print(f"bitbake inventory not found at {args.yocto_docs_inv}, "
> + "use the --bitbake-inv option or set BITBAKE_INV_PATH "
> + "in your environment")
Sorry for the noise, I sent a wrong version of the patch, which shouldn't contain
this but as the script doesn't read doesn't these env variables. The rest of the
patch is the same so I'll delay sending a v3.
Antonin