Fix lint errors

This commit is contained in:
Valeriy Koval
2016-04-27 15:26:59 +03:00
parent 53e5c483f7
commit b410eed57d
2 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ elif "intel" in env.get("PLATFORM"):
"framework-arduinointel"
)
if "arc32" == BOARD_CORELIBDIRNAME:
if BOARD_CORELIBDIRNAME == "arc32":
env.Prepend(
CPPPATH=[
join("$PLATFORMFW_DIR", "system",

View File

@ -107,7 +107,7 @@ env.Replace(
"-Wl,--no-whole-archive"
],
LIBS=["c", "m", "gcc"],
LIBS=["c", "m", "gcc"],
SIZEPRINTCMD='"$SIZETOOL" -B -d $SOURCES',