mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Fix unnecessary uppercase for target includes
This commit is contained in:
@ -163,7 +163,7 @@ def add_mbedlib(libname, libar):
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
if "TARGET_" in root:
|
if "TARGET_" in root:
|
||||||
if all([p not in root.upper() for p in target_includes]):
|
if all([p not in root for p in target_includes]):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
var_dir = join("$BUILD_DIR", "FrameworkMbed%sInc%d" %
|
var_dir = join("$BUILD_DIR", "FrameworkMbed%sInc%d" %
|
||||||
|
Reference in New Issue
Block a user