]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Merge branch 'buildman' of git://git.denx.de/u-boot-x86
authorTom Rini <trini@ti.com>
Tue, 15 Oct 2013 00:19:56 +0000 (20:19 -0400)
committerTom Rini <trini@ti.com>
Tue, 15 Oct 2013 00:19:56 +0000 (20:19 -0400)
tools/buildman/toolchain.py

index a292338b6d0894bd4cd5ca78154bd3c4c9b77b66..b64338680e9f3a0da02671779f9f9f11e37e169d 100644 (file)
@@ -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: ',