From 41d7c2d62e98b3edd8b7d5f13268fe6167a324cd Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 29 Nov 2024 16:55:18 +1030 Subject: [PATCH] wire: extract bolt12 by default, now it's merged. Signed-off-by: Rusty Russell --- wire/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wire/Makefile b/wire/Makefile index f9660294b591..87c882c0c3a8 100644 --- a/wire/Makefile +++ b/wire/Makefile @@ -58,8 +58,7 @@ BOLT12_PATCHES := $(sort $(wildcard wire/extracted_bolt12*.patch)) # Explicit command to re-extract CSV from BOLTs and patch. # This is not a normal make depencency, since we don't want this # called implicitly. -# Note: You will need to run extract-bolt12-csv manually! -extract-bolt-csv: extract-peer-csv extract-onion-csv +extract-bolt-csv: extract-peer-csv extract-onion-csv extract-bolt12-csv extract-peer-csv: wire/peer_wire.csv.raw @set -e; T=wire/peer_wire.csv; trap "rm -f $$T.$$$$" 0; cp $< $$T.$$$$; for p in $(PEER_PATCHES); do echo APPLY $$p; patch $$T.$$$$ $$p; done; mv $$T.$$$$ $$T