From 322cae6af47788b8d1117f509625db351e9d5296 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Wed, 15 Nov 2017 09:55:24 -0700 Subject: [PATCH] build: remove tab from spdk_lib_list_to_files The tab inside the define ends up in the output when called, which leads to problems if the output is quoted (the tab will be treated as part of the filename). Change-Id: I1038e1650a74861660fa4164dbde065217bc7b99 Signed-off-by: Daniel Verkamp Reviewed-on: https://review.gerrithub.io/387631 Tested-by: SPDK Automated Test System Reviewed-by: Jim Harris Reviewed-by: Ben Walker --- mk/spdk.common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/spdk.common.mk b/mk/spdk.common.mk index 186f0ee54..46e7462bf 100644 --- a/mk/spdk.common.mk +++ b/mk/spdk.common.mk @@ -201,5 +201,5 @@ CLEAN_C=\ %.d: ; define spdk_lib_list_to_files - $(1:%=$(SPDK_ROOT_DIR)/build/lib/libspdk_%.a) +$(1:%=$(SPDK_ROOT_DIR)/build/lib/libspdk_%.a) endef