summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2022-10-01 01:53:43 -0500
committerAaron Franke <arnfranke@yahoo.com>2022-10-01 01:57:50 -0500
commit267d267f3d82b05e671446bca88566a6c2013f8e (patch)
tree755926f71ace893e1d40d1ffafd79225b4445267 /SConstruct
parente69b7083d45c5d8698508cce7086d361c4b1f44c (diff)
Fix CODEOWNERS and fix missing quote in "Building for platform" message
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index c86422c4e4..646f41839d 100644
--- a/SConstruct
+++ b/SConstruct
@@ -518,7 +518,7 @@ if selected_platform in platform_list:
# are actually handled to change compile options, etc.
detect.configure(env)
- print(f'Building for platform "{selected_platform}", architecture "{env["arch"]}", target "{env["target"]}.')
+ print(f'Building for platform "{selected_platform}", architecture "{env["arch"]}", target "{env["target"]}".')
if env.dev_build:
print("NOTE: Developer build, with debug optimization level and debug symbols (unless overridden).")