Skip to content

Commit edb0d6e

Browse files
committed
Do not escape dynamic variable for scons command (issue with space in path)
1 parent f401c10 commit edb0d6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mbed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def get_dynamic_manifest(name, config, extra_inc_dirs=[]):
206206
"%s.link_script.ld" % basename(env.get("LDSCRIPT_PATH"))),
207207
"$LDSCRIPT_PATH",
208208
env.VerboseAction(
209-
'%s -E -P $LINKPPFLAGS "$SOURCE" -o $TARGET' %
209+
'%s -E -P $LINKPPFLAGS $SOURCE -o $TARGET' %
210210
env.subst("$GDB").replace("-gdb", "-cpp"),
211211
"Generating LD script $TARGET"))
212212

0 commit comments

Comments
 (0)