tinyipa: use python 3 for building on all systems

CentOS 8 does not have python-pip.

Change-Id: I9913d208a1182dc9c4ca6644f945151c83da1437
This commit is contained in:
Dmitry Tantsur 2020-09-14 13:48:16 +02:00
parent 65d0f80a91
commit 4d0547a636
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@
COMMON_PACKAGES="wget unzip sudo gawk" COMMON_PACKAGES="wget unzip sudo gawk"
APT_PACKAGES="${COMMON_PACKAGES} python3-pip squashfs-tools" APT_PACKAGES="${COMMON_PACKAGES} python3-pip squashfs-tools"
YUM_PACKAGES="${COMMON_PACKAGES} python-pip squashfs-tools" YUM_PACKAGES="${APT_PACKAGES}"
ZYPPER_PACKAGES="${COMMON_PACKAGES} python-pip squashfs" ZYPPER_PACKAGES="${COMMON_PACKAGES} python3-pip squashfs"
echo "Installing dependencies:" echo "Installing dependencies:"