Expanded support for SCons variables declared in the legacy format `${SCONS_VARNAME}` // Resolve #4828

This commit is contained in:
Ivan Kravets
2024-01-11 21:33:01 +02:00
parent 485f801c74
commit f31f9fa616
2 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -348,7 +348,7 @@ class ProjectConfigBase:
if option in self.BUILTIN_VARS:
return self.BUILTIN_VARS[option]()
# SCons varaibles
return f"${option}"
return f"${{{option}}}"
# handle system environment variables
if section == "sysenv":