From c97d691aab1ac29b2092a303fabc701c616cc5aa Mon Sep 17 00:00:00 2001 From: Kunhui-Li Date: Mon, 27 Dec 2021 10:20:26 +0800 Subject: [PATCH] config_tools: add __init__.py under static_allocators/lib directory If the user installed the lib python package in the host machine, it will fail to build acrn hypervisor since the same package named lib is also used in acrn config tool(static_allocators/lib). So we add the __init__.py file under the static_allocators/lib directory to fix the error. Tracked-On: #7001 Signed-off-by: Kunhui-Li --- misc/config_tools/static_allocators/lib/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 misc/config_tools/static_allocators/lib/__init__.py diff --git a/misc/config_tools/static_allocators/lib/__init__.py b/misc/config_tools/static_allocators/lib/__init__.py new file mode 100644 index 000000000..a8caaa386 --- /dev/null +++ b/misc/config_tools/static_allocators/lib/__init__.py @@ -0,0 +1,4 @@ +# Copyright (C) 2021 Intel Corporation. All rights reserved. +# +# SPDX-License-Identifier: BSD-3-Clause +#