From: Victor Julien Date: Sun, 29 Oct 2017 07:38:43 +0000 (+0100) Subject: install: use up to date url for 'make install-full' X-Git-Tag: suricata-4.0.2~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8fc82408b785a119a14934c5013f66092177d8ff;p=thirdparty%2Fsuricata.git install: use up to date url for 'make install-full' --- diff --git a/Makefile.am b/Makefile.am index 241a750846..baaeb17445 100644 --- a/Makefile.am +++ b/Makefile.am @@ -32,9 +32,9 @@ install-rules: install -d "$(DESTDIR)$(e_sysconfrulesdir)" if HAVE_FETCH_COMMAND if HAVE_WGET_COMMAND - $(HAVE_WGET) -qO - https://rules.emergingthreats.net/open/suricata-3.0/emerging.rules.tar.gz | tar -x -z -C "$(DESTDIR)$(e_sysconfdir)" -f - + $(HAVE_WGET) -qO - https://rules.emergingthreats.net/open/suricata-4.0/emerging.rules.tar.gz | tar -x -z -C "$(DESTDIR)$(e_sysconfdir)" -f - else - $(HAVE_CURL) -s https://rules.emergingthreats.net/open/suricata-3.0/emerging.rules.tar.gz | tar -x -z -C "$(DESTDIR)$(e_sysconfdir)" -f - + $(HAVE_CURL) -s https://rules.emergingthreats.net/open/suricata-4.0/emerging.rules.tar.gz | tar -x -z -C "$(DESTDIR)$(e_sysconfdir)" -f - endif else @echo "UNABLE to load ruleset wget or curl are not installed on system."