summaryrefslogtreecommitdiffstats
path: root/source-builder/sb/config.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2013-09-03 08:50:06 +1000
committerChris Johns <chrisj@rtems.org>2013-09-03 08:50:06 +1000
commit7a691b8280b25a3e690a6b5d5bfb2dd302e8f4a6 (patch)
treef6d675e60a5c85e0d818a0cf0254a4e0d1067ce4 /source-builder/sb/config.py
parentconfig: Update RTEMS to gdb-7.6.1. (diff)
downloadrtems-source-builder-7a691b8280b25a3e690a6b5d5bfb2dd302e8f4a6.tar.bz2
sb: Fix the config _parse args.
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 4194ea5..ff63b32 100644
--- a/source-builder/sb/config.py
+++ b/source-builder/sb/config.py
@@ -534,7 +534,7 @@ class file:
this_isvalid = True
else:
this_isvalid = False
- r = self._parse(config, dir, info, data, roc = True, isvalid = this_isvalid)
+ r = self._parse(config, dir, info, roc = True, isvalid = this_isvalid)
if r[0] == 'package':
if this_isvalid:
dir, info, data = self._process_package(r, dir, info, data)