mirror of
https://github.com/platformio/platformio-core.git
synced 2025-08-01 02:54:25 +02:00
Fix typo
This commit is contained in:
@@ -203,7 +203,7 @@ def parse_eix_file(filename):
|
|||||||
|
|
||||||
if "LINKFLAGS" in result:
|
if "LINKFLAGS" in result:
|
||||||
for i, flag in enumerate(result["LINKFLAGS"]):
|
for i, flag in enumerate(result["LINKFLAGS"]):
|
||||||
if f.startswith("-u "):
|
if flag.startswith("-u "):
|
||||||
result["LINKFLAGS"][i] = result["LINKFLAGS"][i].split(" ")
|
result["LINKFLAGS"][i] = result["LINKFLAGS"][i].split(" ")
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
Reference in New Issue
Block a user