From: "Steven Rostedt (VMware)" <rostedt@xxxxxxxxxxx> In lib/trace-cmd/Makefile, the libtracecmd.a library and its build path is open coded is a few places. Use the $(LIBTRACECMD_STATIC) variable instead. Signed-off-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx> --- lib/trace-cmd/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/trace-cmd/Makefile b/lib/trace-cmd/Makefile index a3a1075a7ebd..42f1f5c447eb 100644 --- a/lib/trace-cmd/Makefile +++ b/lib/trace-cmd/Makefile @@ -4,7 +4,7 @@ include $(src)/scripts/utils.mk bdir:=$(obj)/lib/trace-cmd -DEFAULT_TARGET = $(bdir)/libtracecmd.a +DEFAULT_TARGET = $(LIBTRACECMD_STATIC) OBJS = OBJS += trace-hash.o @@ -35,7 +35,7 @@ $(bdir): $(OBJS): | $(bdir) $(DEPS): | $(bdir) -$(bdir)/libtracecmd.a: $(OBJS) +$(LIBTRACECMD_STATIC): $(OBJS) $(Q)$(call do_build_static_lib) LIBS = -L$(obj)/lib/traceevent -ltraceevent -- 2.29.2