mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
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 <jb55@jb55.com>
This commit is contained in:
parent
7c4b9c8a0d
commit
f2488fbe14
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue