From: Bogdan Marinescu Date: Tue, 23 Apr 2013 13:43:45 +0000 (+0300) Subject: bitbake: bitbake: remove stack trace depth limitation X-Git-Tag: rev_ivi_2015_02_04~12701 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd97d2b1f4b09f8850e77f0b2b6eb3e0484bc55b;p=scm%2Fbb%2Ftizen-distro.git bitbake: bitbake: remove stack trace depth limitation 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. (Bitbake rev: 02629c42fb09413d9da16cfe43e03338ce7db3ff) Signed-off-by: Bogdan Marinescu Signed-off-by: Richard Purdie --- diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index f96c1a1..0e69207 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -276,6 +276,6 @@ if __name__ == "__main__": except Exception: ret = 1 import traceback - traceback.print_exc(5) + traceback.print_exc() sys.exit(ret)