Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2018-01-29 21:54:48 +0300
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2018-02-02 11:34:01 +0300
commit3101bc92b3dcd1b06fc246c85f8f6f5d529468ac (patch)
treef47eaae93950da0b789ff10f690107c0f500ee1e /Makefile
parentd82e34c3eec52b6025fac98bfb4cc7b882e27272 (diff)
Do not print command invocation if QUIET
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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