From 63e5d159b29f933911777ef06fa90cc9e9d23acf Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Mon, 10 Jul 2017 15:22:39 -0400 Subject: [PATCH] Fix: built-in plugins with new plugin filenames MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- cli/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/Makefile.am b/cli/Makefile.am index 902ad0dd..5ceb499e 100644 --- a/cli/Makefile.am +++ b/cli/Makefile.am @@ -64,7 +64,7 @@ if BUILT_IN_PLUGINS # binary that are filled by plugin objects. If the linker discards those # symbols because the CLI does not use them directly, the CLI reports # no plugins found (plugins are effectively not embedded). -pluginarchive = -Wl,--whole-archive,$(PLUGINS_PATH)/$(1)/.libs/libbabeltrace-plugin-$(1).a,--no-whole-archive +pluginarchive = -Wl,--whole-archive,$(PLUGINS_PATH)/$(1)/.libs/babeltrace-plugin-$(1).a,--no-whole-archive # Built-in plugins babeltrace_bin_LDFLAGS += $(call pluginarchive,ctf) -- 2.34.1