From 64c9004036442bec0b528395be46016e7d4f514d Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 14 Jun 2016 19:54:27 +0300 Subject: [PATCH] Fix typo --- platformio/builder/scripts/frameworks/mbed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/builder/scripts/frameworks/mbed.py b/platformio/builder/scripts/frameworks/mbed.py index 73d5526c..7c04af31 100644 --- a/platformio/builder/scripts/frameworks/mbed.py +++ b/platformio/builder/scripts/frameworks/mbed.py @@ -203,7 +203,7 @@ def parse_eix_file(filename): if "LINKFLAGS" in result: for i, flag in enumerate(result["LINKFLAGS"]): - if f.startswith("-u "): + if flag.startswith("-u "): result["LINKFLAGS"][i] = result["LINKFLAGS"][i].split(" ") return result