From 5011b9396d5a0ba22ed23945b35d52a1bbb5b599 Mon Sep 17 00:00:00 2001 From: zihengL1 Date: Sun, 17 Apr 2022 22:10:35 +0800 Subject: [PATCH] packaging: error while loading shared libraries: libSDL2-2.0.so.0 Added the "libsdl2-dev" dependency in file "misc/packaging/gen_acrn_deb.py" Tracked-On: projectacrn#7291 Signed-off-by: zihengL1 --- misc/packaging/gen_acrn_deb.py | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/packaging/gen_acrn_deb.py b/misc/packaging/gen_acrn_deb.py index 649792c48..20c018ca0 100644 --- a/misc/packaging/gen_acrn_deb.py +++ b/misc/packaging/gen_acrn_deb.py @@ -90,6 +90,7 @@ def create_acrn_deb(board, scenario, version, build_dir): 'Package: acrn-hypervisor\n', 'version: %s \n' % version, 'Depends: libcjson1\n', + 'Pre-Depends: libsdl2-dev\n', 'Section: free \n', 'Priority: optional \n', 'Architecture: amd64 \n',