add make dependency to redhat based invoke installs, since centos 8 does not have it by default
This commit is contained in:
parent
637f7740d6
commit
a9ec21c604
1 changed files with 1 additions and 1 deletions
2
tasks.py
2
tasks.py
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue