Merge branch 'buildman' of git://git.denx.de/u-boot-x86

This commit is contained in:
Tom Rini 2013-10-14 20:19:56 -04:00
commit 9cc18042e6
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,8 @@ class Toolchain:
# As a basic sanity check, run the C compiler with --version # As a basic sanity check, run the C compiler with --version
cmd = [fname, '--version'] cmd = [fname, '--version']
if test: if test:
result = command.RunPipe([cmd], capture=True, env=env) result = command.RunPipe([cmd], capture=True, env=env,
raise_on_error=False)
self.ok = result.return_code == 0 self.ok = result.return_code == 0
if verbose: if verbose:
print 'Tool chain test: ', print 'Tool chain test: ',