From: "Steven Rostedt (VMware)" <rostedt@xxxxxxxxxxx> The TRACE_LIBS variable in the Makefile is not not used anywhere. Simply have LIBS equal LIBTRACEEVENT_LIBS, and export LIBS instead. Signed-off-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx> --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 142b824ca421..a8b888958614 100644 --- a/Makefile +++ b/Makefile @@ -129,12 +129,12 @@ export prefix bindir src obj bdir LIBTRACEFS_STATIC = $(bdir)/libtracefs.a LIBTRACEFS_SHARED = $(bdir)/libtracefs.so.$(TRACEFS_VERSION) -TRACE_LIBS = $(LIBTRACEEVENT_LIBS) - PKG_CONFIG_SOURCE_FILE = libtracefs.pc PKG_CONFIG_FILE := $(addprefix $(obj)/,$(PKG_CONFIG_SOURCE_FILE)) -export LIBS TRACE_LIBS +LIBS = $(LIBTRACEEVENT_LIBS) + +export LIBS export LIBTRACEFS_STATIC LIBTRACEFS_SHARED export Q SILENT VERBOSE EXT -- 2.29.2