]> granicus.if.org Git - esp-idf/commitdiff
examples/restful_server: fix Makefile syntax for flashing SPIFFS
authorIvan Grokhotkov <ivan@espressif.com>
Mon, 7 Oct 2019 11:28:38 +0000 (13:28 +0200)
committerIvan Grokhotkov <ivan@espressif.com>
Mon, 7 Oct 2019 11:28:38 +0000 (13:28 +0200)
Closes https://github.com/espressif/esp-idf/issues/4050

examples/protocols/http_server/restful_server/Makefile

index c07edffd2aea150c74e62538f284f2e8106807dd..ba534aed17649b7c5dce4d6180b4e53d577e002b 100644 (file)
@@ -7,7 +7,8 @@ include $(IDF_PATH)/make/project.mk
 ifdef CONFIG_EXAMPLE_WEB_DEPLOY_SF
 WEB_SRC_DIR = $(shell pwd)/front/web-demo
 ifneq ($(wildcard $(WEB_SRC_DIR)/dist/.*),)
-$(eval $(call spiffs_create_partition_image,www,$(WEB_SRC_DIR)/dist,FLASH_IN_PROJECT))
+SPIFFS_IMAGE_FLASH_IN_PROJECT := 1
+$(eval $(call spiffs_create_partition_image,www,$(WEB_SRC_DIR)/dist))
 else
 $(error $(WEB_SRC_DIR)/dist doesn't exist. Please run 'npm run build' in $(WEB_SRC_DIR))
 endif