From 2955af2d04786d070ff596f30ec7efa17fd5fb3f Mon Sep 17 00:00:00 2001 From: C Stout Date: Thu, 17 Oct 2024 06:06:53 -0700 Subject: [PATCH] meson-to-hermetic: add pyyaml to python libs Change-Id: I576cbe44d3aa703faf13e132fe4d786bdc976811 --- meson_to_hermetic/meson_to_hermetic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_to_hermetic/meson_to_hermetic.py b/meson_to_hermetic/meson_to_hermetic.py index a68f0640f7f..c7bb14dbf7f 100644 --- a/meson_to_hermetic/meson_to_hermetic.py +++ b/meson_to_hermetic/meson_to_hermetic.py @@ -1159,7 +1159,7 @@ def custom_target( if src.endswith('.py'): impl.fprint(' "%s",' % src) impl.fprint(' ],') - impl.fprint(' libs: ["mako"],') + impl.fprint(' libs: ["mako", "pyyaml"],') # For the PYTHONPATH to work in our genrules command, we need the python interpreter, # not a compiled binary, so disable embedded_launcher. impl.fprint(' version: {')