From 7175a5a820ee1669579a944359b2bbbd073493ac Mon Sep 17 00:00:00 2001 From: Nadav Har'El Date: Mon, 24 Feb 2020 14:15:11 +0200 Subject: [PATCH] scripts/setup.py: fix Fedora package to python3 In Fedora, the "python-*" packages may refer to Python2, so we need to install the "python3-*" packages specifically, now that our scripts require Python3. This patch fixes build failures on Fedora 29 and Fedora 30. Debian/Ubuntu setups may need similar fixes, but I didn't test them and a fix is not included in this patch. Signed-off-by: Nadav Har'El --- scripts/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup.py b/scripts/setup.py index 0d4b328d45..db831f0f5a 100755 --- a/scripts/setup.py +++ b/scripts/setup.py @@ -51,7 +51,7 @@ class Fedora(object): 'openssl-libs', 'p11-kit', 'patch', - 'python-dpkt', + 'python3-dpkt', 'qemu-img', 'qemu-system-x86', 'tcpdump',