From f2488fbe14bcb6d68ab1114e4e18cfc20763046d Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 8 Oct 2018 19:45:55 -0700 Subject: [PATCH] make: fix broken error message in bolt-check It looks like a printf was missing for the bolt-check error message Signed-off-by: William Casarin --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index de5b4d547..58b019bc5 100644 --- a/Makefile +++ b/Makefile @@ -243,7 +243,7 @@ check-makefile: # Any mention of BOLT# must be followed by an exact quote, modulo whitespace. bolt-check/%: % bolt-precheck tools/check-bolt - @if [ -d .tmp.lightningrfc ]; then tools/check-bolt .tmp.lightningrfc $<; else Not checking BOLTs: BOLTDIR $(BOLTDIR) does not exist >&2; fi + @if [ -d .tmp.lightningrfc ]; then tools/check-bolt .tmp.lightningrfc $<; else echo "Not checking BOLTs: BOLTDIR $(BOLTDIR) does not exist" >&2; fi LOCAL_BOLTDIR=.tmp.lightningrfc