From: Michael Jeanson Date: Mon, 10 Jul 2017 19:22:39 +0000 (-0400) Subject: Fix: built-in plugins with new plugin filenames X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=63e5d159b29f933911777ef06fa90cc9e9d23acf Fix: built-in plugins with new plugin filenames Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- 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)