From: "Steven Rostedt (VMware)" <rostedt@xxxxxxxxxxx> The libtracecmd.so.$(LIBTRACECMD_VERSION) was being installed into the lib/ directory, but that is not enough for applications to use. It also needs the libtracecmd.so and libtracecmd.so.$(LIBTC_VERSION) soft links to be installed too. Signed-off-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx> --- lib/trace-cmd/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/trace-cmd/Makefile b/lib/trace-cmd/Makefile index 96acdaf9aa27..838a59ddf332 100644 --- a/lib/trace-cmd/Makefile +++ b/lib/trace-cmd/Makefile @@ -61,6 +61,8 @@ $(OBJS): $(bdir)/%.o : $(bdir)/.%.d install_libs: $(Q)$(call do_install,$(LIBTRACECMD_SHARED),$(libdir_SQ)) + cp -fpR $(LIBTRACECMD_SHARED_VERSION) $(DESTDIR)$(libdir_SQ) + cp -fpR $(LIBTRACECMD_SHARED_SO) $(DESTDIR)$(libdir_SQ) $(Q)$(call do_install,$(src)/include/trace-cmd/trace-cmd.h,$(includedir_SQ)/trace-cmd) dep_includes := $(wildcard $(DEPS)) -- 2.29.2