diff options
author | Tom Rini <trini@ti.com> | 2013-10-14 20:19:56 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-10-14 20:19:56 -0400 |
commit | 9cc18042e61275210cf888e5759347eeb2a2e297 (patch) | |
tree | fb9453ad9b27bdd4de75a0c8fd6a0e3a00f4413a /tools | |
parent | 9ade4857ab9ad817af8591b4ac7266834c9df332 (diff) | |
parent | 8bb2bddc2c18a3643ce53e793d5bc27a40e98a4f (diff) | |
download | u-boot-imx-9cc18042e61275210cf888e5759347eeb2a2e297.zip u-boot-imx-9cc18042e61275210cf888e5759347eeb2a2e297.tar.gz u-boot-imx-9cc18042e61275210cf888e5759347eeb2a2e297.tar.bz2 |
Merge branch 'buildman' of git://git.denx.de/u-boot-x86
Diffstat (limited to 'tools')
-rw-r--r-- | tools/buildman/toolchain.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py index a292338..b643386 100644 --- a/tools/buildman/toolchain.py +++ b/tools/buildman/toolchain.py @@ -39,7 +39,8 @@ class Toolchain: # As a basic sanity check, run the C compiler with --version cmd = [fname, '--version'] 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 if verbose: print 'Tool chain test: ', |