Fix unnecessary uppercase for target includes

This commit is contained in:
Valerii Koval
2016-06-15 20:55:45 +03:00
committed by GitHub
parent 47c238b1eb
commit 31a110c37f

View File

@ -163,7 +163,7 @@ def add_mbedlib(libname, libar):
continue
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
var_dir = join("$BUILD_DIR", "FrameworkMbed%sInc%d" %