From 2e3af9e0623fb101c0844b1245ce0341cfef1581 Mon Sep 17 00:00:00 2001 From: CHEN Gang Date: Thu, 14 Jun 2018 08:58:40 +0800 Subject: [PATCH] tools: acrn-crashlog: fix typo in Makefile This patch is to fix libtelemetry.so typo in Makefile. Signed-off-by: Liu Xinwu Acked-by: Zhang Di --- tools/acrn-crashlog/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/acrn-crashlog/Makefile b/tools/acrn-crashlog/Makefile index 72050c235..12d704d9b 100644 --- a/tools/acrn-crashlog/Makefile +++ b/tools/acrn-crashlog/Makefile @@ -27,7 +27,7 @@ ifeq ($(strip $(LIB_EXIST)),libsystemd-journal.so) EXTRA_LIBS = -lsystemd-journal endif LIB_EXIST = $(findstring libtelemetry.so, $(LDCNF)) -ifeq ($(strip $(LIB_EXIST)),libtelemetryxx.so) +ifeq ($(strip $(LIB_EXIST)),libtelemetry.so) CFLAGS += -DHAVE_TELEMETRICS_CLIENT EXTRA_LIBS += -ltelemetry endif