From b2c1ef73cbaf2086493acc1dada4bde2f3a1a7c8 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Thu, 27 Jul 2023 14:15:56 +0930 Subject: [PATCH] build: avoid printing PLUGIN_BASES on every build. Debugging left over in 94205c094f33724a0a613c136eb92270c27e7604. Signed-off-by: Rusty Russell --- plugins/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugins/Makefile b/plugins/Makefile index c0cf0ab1c..85d9e1d83 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -233,9 +233,6 @@ plugins/sql: $(PLUGIN_SQL_OBJS) $(PLUGIN_LIB_OBJS) $(PLUGIN_COMMON_OBJS) $(JSMN_ ALL_C_HEADERS += plugins/list_of_builtin_plugins_gen.h PLUGIN_BASES := $(PLUGINS:plugins/%=%) $(PY_PLUGINS:plugins/%=%) -$(info PLUGIN_BASES) -$(info $(PLUGIN_BASES)) - plugins/list_of_builtin_plugins_gen.h: plugins/Makefile Makefile config.vars @$(call VERBOSE,GEN $@,echo "static const char *list_of_builtin_plugins[] = { $(PLUGIN_BASES:%=\"%\",) NULL };" > $@)