summaryrefslogtreecommitdiffstats
path: root/source-builder/sb/config.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-08-21 22:40:47 +1000
committerChris Johns <chrisj@rtems.org>2014-08-21 22:40:47 +1000
commit257d1e4378c80968de57ba888e235888adb0e992 (patch)
tree418d34f7dae5788dc9b38c2d265ccfb707fad3b0 /source-builder/sb/config.py
parentrtems-4.11: Newlib 19-Aug-2014. (diff)
downloadrtems-source-builder-257d1e4378c80968de57ba888e235888adb0e992.tar.bz2
rtems-4.11: Fix building the SPARC simulator.
Add support for simulator options to enable special features of some gdb simulators.
Diffstat (limited to 'source-builder/sb/config.py')
-rw-r--r--source-builder/sb/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source-builder/sb/config.py b/source-builder/sb/config.py
index baba751..d5e68d0 100644
--- a/source-builder/sb/config.py
+++ b/source-builder/sb/config.py
@@ -531,7 +531,7 @@ class file:
log.warning('malformed expand macro, no colon found')
else:
e = self._expand(m[colon + 1:-1].strip())
- s = s.replace(m, e)
+ s = s.replace(m, self._label(e))
expanded = True
mn = None
elif m.startswith('%{with '):