Changeset 0393814 in rtems-source-builder
- Timestamp:
- 08/05/14 03:51:08 (8 years ago)
- Branches:
- 4.10, 4.11, 4.9, 5, master
- Children:
- aaa015e
- Parents:
- 910081d
- Location:
- source-builder/sb
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
source-builder/sb/bootstrap.py
r910081d r0393814 79 79 if cmd is None: 80 80 cmd = popenargs[0] 81 raise CalledProcessError(retcode, cmd)81 raise subprocess.CalledProcessError(retcode, cmd) 82 82 return output 83 83 subprocess.check_output = f -
source-builder/sb/rtemsconfig.py
r910081d r0393814 78 78 if cmd is None: 79 79 cmd = popenargs[0] 80 raise CalledProcessError(retcode, cmd)80 raise subprocess.CalledProcessError(retcode, cmd) 81 81 return output 82 82 subprocess.check_output = f
Note: See TracChangeset
for help on using the changeset viewer.