From a027b3a80cad8cd72c8629d44d687c48d9bfb181 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Thu, 27 May 2021 13:55:58 +0930 Subject: [PATCH] plugins/test/Makefile: fix typo causing build race. Signed-off-by: Rusty Russell --- plugins/test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/test/Makefile b/plugins/test/Makefile index a65ae8b11..67591ecc5 100644 --- a/plugins/test/Makefile +++ b/plugins/test/Makefile @@ -4,7 +4,7 @@ PLUGIN_TEST_SRC := $(wildcard plugins/test/run-*.c) PLUGIN_TEST_OBJS := $(PLUGIN_TEST_SRC:.c=.o) PLUGIN_TEST_PROGRAMS := $(PLUGIN_TEST_OBJS:.o=) -ALL_C_SOURCES += $(PLUGIN__TEST_SRC) +ALL_C_SOURCES += $(PLUGIN_TEST_SRC) ALL_TEST_PROGRAMS += $(PLUGIN_TEST_PROGRAMS) PLUGIN_TEST_COMMON_OBJS := \