From 3101bc92b3dcd1b06fc246c85f8f6f5d529468ac Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 29 Jan 2018 19:54:48 +0100 Subject: [PATCH] Do not print command invocation if QUIET --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4592a40..259ed0e 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ test: test_format test_dirs test_files test_seek test_truncate test_parallel \ test_alloc test_paths test_orphan test_move test_corrupt test_%: tests/test_%.sh ifdef QUIET - ./$< | sed -n '/^[-=]/p' + @./$< | sed -n '/^[-=]/p' else ./$< endif