]> granicus.if.org Git - esp-idf/commitdiff
build system: fix warning about undefined variable 'quote'
authorIvan Grokhotkov <ivan@espressif.com>
Wed, 18 Oct 2017 12:43:43 +0000 (20:43 +0800)
committerIvan Grokhotkov <ivan@espressif.com>
Thu, 19 Oct 2017 13:35:23 +0000 (21:35 +0800)
components/partition_table/Makefile.projbuild

index 97819aa8d1fbcd820b89be8b358e83a0732d12f4..ddcd8471bde6d743e3ac9d89964c389190fdb94c 100644 (file)
@@ -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