From 9ebdb71ec0a4e7e10c372c90a323a085d866ab59 Mon Sep 17 00:00:00 2001 From: niftynei Date: Thu, 16 Dec 2021 13:07:33 -0600 Subject: [PATCH] lightningd/Make: fixup reference to wallet headers There is no "wallet_lib_headers" variable in wallet/Makefile --- lightningd/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lightningd/Makefile b/lightningd/Makefile index c1cbf9d4db57..557bfb9c2285 100644 --- a/lightningd/Makefile +++ b/lightningd/Makefile @@ -132,9 +132,9 @@ LIGHTNINGD_COMMON_OBJS := \ include wallet/Makefile # All together in one convenient var -LIGHTNINGD_HEADERS = $(LIGHTNINGD_HEADERS_NOGEN) $(LIGHTNINGD_HEADERS_GEN) $(WALLET_LIB_HEADERS) +LIGHTNINGD_HEADERS = $(LIGHTNINGD_HEADERS_NOGEN) $(LIGHTNINGD_HEADERS_GEN) $(WALLET_HDRS) -$(LIGHTNINGD_OBJS): $(LIGHTNINGD_HEADERS) $(WALLET_HDRS) +$(LIGHTNINGD_OBJS): $(LIGHTNINGD_HEADERS) # Only the plugin component needs to depend on this header. lightningd/plugin.o: plugins/list_of_builtin_plugins_gen.h