summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorBogdan Marinescu <bogdan.a.marinescu@intel.com>2013-04-23 16:43:45 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-03 16:07:49 +0100
commit02629c42fb09413d9da16cfe43e03338ce7db3ff (patch)
tree20546670dc94c6fa8bc6188957d2417f5a815ccf /bin
parent260ced7452405fc43ce3d9dd6798236aa07cc716 (diff)
downloadbitbake-02629c42fb09413d9da16cfe43e03338ce7db3ff.tar.gz
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. Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bitbake2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitbake b/bin/bitbake
index f96c1a1b6..0e69207de 100755
--- a/bin/bitbake
+++ b/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)