From 41a312f9080e987f2fe8d615b58c3baa9db3da4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sch=C3=A4fer?= Date: Thu, 27 Feb 2020 09:23:54 +0100 Subject: [PATCH] Update Makefile (#14) Correct iproute2 package name for Debian-based distributions. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3616332..33c2d78 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ install: installdeps: # .deb/apt-get based distros - if test -x "$(APT_GET)"; then $(APT_GET) -y install perl-base perl-modules libnet-ip-perl libnet-dns-perl libio-socket-inet6-perl iproute iptables tayga; fi + if test -x "$(APT_GET)"; then $(APT_GET) -y install perl-base perl-modules libnet-ip-perl libnet-dns-perl libio-socket-inet6-perl iproute2 iptables tayga; fi # .rpm/DNF/YUM-based distros if test -x "$(DNF_OR_YUM)"; then $(DNF_OR_YUM) -y install perl perl-Net-IP perl-Net-DNS perl-IO-Socket-INET6 perl-File-Temp iproute iptables; fi # If necessary, try to install the TAYGA .rpm using dnf/yum. It is unfortunately not available in all .rpm based distros (in particular CentOS/RHEL).