From b52e3fae64ca235c3fbada80d7b1ca608a6fefee Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Wed, 18 Oct 2017 20:43:43 +0800 Subject: [PATCH] build system: fix warning about undefined variable 'quote' --- components/partition_table/Makefile.projbuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/partition_table/Makefile.projbuild b/components/partition_table/Makefile.projbuild index 97819aa8d..ddcd8471b 100644 --- a/components/partition_table/Makefile.projbuild +++ b/components/partition_table/Makefile.projbuild @@ -19,8 +19,9 @@ ifneq ("$(CONFIG_PARTITION_TABLE_FILENAME)","") ifndef PARTITION_TABLE_CSV_PATH # Path to partition CSV file is relative to project path for custom -# partition CSV files, but relative to component dir otherwise.$ +# partition CSV files, but relative to component dir otherwise. PARTITION_TABLE_ROOT := $(call dequote,$(if $(CONFIG_PARTITION_TABLE_CUSTOM),$(PROJECT_PATH),$(COMPONENT_PATH))) +quote := " PARTITION_TABLE_CSV_PATH := $(call dequote,$(abspath $(PARTITION_TABLE_ROOT)/$(subst $(quote),,$(CONFIG_PARTITION_TABLE_FILENAME)))) endif