From 8cf4afabc3bf015cb44c701290017a8f7295dc8f Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Fri, 11 Oct 2019 11:11:27 -0600 Subject: [PATCH] Makefile: prefix suricata-update error with @ So only the echo output is displayed. Not the lines themselves. --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index b7fbbb0c55..c920180fa6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,8 +37,8 @@ if INSTALL_SURICATA_UPDATE --suricata-conf $(DESTDIR)$(sysconfdir)/suricata/suricata.yaml \ --no-test --no-reload else - echo "error: rules not installed as suricata-update not available" - exit 1 + @echo "error: rules not installed as suricata-update not available" + @exit 1 endif @echo "" @echo "You can now start suricata by running as root something like:" -- 2.47.2