From 8f91d730da4ad8c68cf4284da50be3002dde98ce Mon Sep 17 00:00:00 2001 From: David Cermak Date: Thu, 16 May 2019 14:09:43 +0200 Subject: [PATCH] make: fix build failure on macos with GNU make <= 3.81 Closes https://github.com/espressif/esp-idf/issues/3459 --- components/soc/component.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/soc/component.mk b/components/soc/component.mk index 5535db1eb..22d239cbe 100644 --- a/components/soc/component.mk +++ b/components/soc/component.mk @@ -1,6 +1,6 @@ SOC_NAME := $(IDF_TARGET) -COMPONENT_SRCDIRS := $(SOC_NAME) src/ src/hal +COMPONENT_SRCDIRS := $(SOC_NAME) src src/hal COMPONENT_ADD_INCLUDEDIRS := $(SOC_NAME)/include include