summaryrefslogtreecommitdiffstats
path: root/source-builder/sb/execute.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2013-04-21 18:37:02 +1000
committerChris Johns <chrisj@rtems.org>2013-04-21 18:37:02 +1000
commit5142becd8ec950ea0f2d36cdc9488660abc2ca29 (patch)
treecbe93e6ede010f4e716fcd21fd123a4247b0c917 /source-builder/sb/execute.py
parentAdd source and patches section. (diff)
downloadrtems-source-builder-5142becd8ec950ea0f2d36cdc9488660abc2ca29.tar.bz2
Refactor the logging support.
Diffstat (limited to 'source-builder/sb/execute.py')
-rwxr-xr-xsource-builder/sb/execute.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/source-builder/sb/execute.py b/source-builder/sb/execute.py
index fda4974..92a5e83 100755
--- a/source-builder/sb/execute.py
+++ b/source-builder/sb/execute.py
@@ -181,6 +181,7 @@ class execute:
r, e = os.path.splitext(command[0])
if e not in ['.exe', '.com', '.bat']:
command[0] = command[0] + '.exe'
+ log.trace('exe: %s' % (command))
proc = subprocess.Popen(command, shell = shell,
cwd = cwd, env = env,
stdin = stdin, stdout = stdout,