]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake: remove stack trace depth limitation
authorBogdan Marinescu <bogdan.a.marinescu@intel.com>
Tue, 23 Apr 2013 13:43:45 +0000 (16:43 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 3 May 2013 15:07:49 +0000 (16:07 +0100)
In case of an error in bitbake, the stack trace is limited to 5
items. This is an endless source of confusion and it makes bugs
reports impractical, since a full stack trace can't be included
in the bug report. This patch simply removes the depth limit.

Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bin/bitbake

index f96c1a1b6fc4e10165e7baa10052086b339b5f7e..0e69207de7e842f887f2c4eff572c44741fe9736 100755 (executable)
@@ -276,6 +276,6 @@ if __name__ == "__main__":
     except Exception:
         ret = 1
         import traceback
-        traceback.print_exc(5)
+        traceback.print_exc()
     sys.exit(ret)