From 4d0547a636a4631b3fab9313a186f6c4b46fc9fc Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Mon, 14 Sep 2020 13:48:16 +0200 Subject: [PATCH] tinyipa: use python 3 for building on all systems CentOS 8 does not have python-pip. Change-Id: I9913d208a1182dc9c4ca6644f945151c83da1437 --- tinyipa/install-deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tinyipa/install-deps.sh b/tinyipa/install-deps.sh index 22b831c..084986a 100755 --- a/tinyipa/install-deps.sh +++ b/tinyipa/install-deps.sh @@ -2,8 +2,8 @@ COMMON_PACKAGES="wget unzip sudo gawk" APT_PACKAGES="${COMMON_PACKAGES} python3-pip squashfs-tools" -YUM_PACKAGES="${COMMON_PACKAGES} python-pip squashfs-tools" -ZYPPER_PACKAGES="${COMMON_PACKAGES} python-pip squashfs" +YUM_PACKAGES="${APT_PACKAGES}" +ZYPPER_PACKAGES="${COMMON_PACKAGES} python3-pip squashfs" echo "Installing dependencies:"