summaryrefslogtreecommitdiff
path: root/script/nfpvalues.py
diff options
context:
space:
mode:
Diffstat (limited to 'script/nfpvalues.py')
-rwxr-xr-xscript/nfpvalues.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/nfpvalues.py b/script/nfpvalues.py
index b88c3df..9d5d3a8 100755
--- a/script/nfpvalues.py
+++ b/script/nfpvalues.py
@@ -15,7 +15,7 @@ def main(size_executable, rom_sections, ram_sections):
ram_sections = ram_sections.split(",")
status = subprocess.run(
- [size_executable, "-A", "build/system.elf"],
+ size_executable.split() + ["-A", "build/system.elf"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
universal_newlines=True,