add make dependency to redhat based invoke installs, since centos 8 does not have it by default

This commit is contained in:
Blake Harnden 2020-07-10 14:20:13 -07:00
parent 637f7740d6
commit a9ec21c604

View file

@ -73,7 +73,7 @@ def install_system(c: Context, os_info: OsInfo, hide: bool) -> None:
elif os_info.like == OsLike.REDHAT:
c.run(
"sudo yum install -y automake pkgconf-pkg-config gcc gcc-c++ libev-devel "
"iptables-ebtables iproute python3-devel python3-tkinter tk ethtool",
"iptables-ebtables iproute python3-devel python3-tkinter tk ethtool make",
hide=hide
)
r = c.run("ebtables -V", hide=hide)