summaryrefslogtreecommitdiffstats
path: root/bitbake/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:24:13 +0100
commit7709342e69d04117eb1f5a37a55e9cfd0b562355 (patch)
treecc6f18245393956596644b55a77307ad9dda7155 /bitbake/bin
parent6db202532122b213ae6cfce9a49ac9fad2db20f5 (diff)
downloadpoky-7709342e69d04117eb1f5a37a55e9cfd0b562355.tar.gz
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 <bogdan.a.marinescu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/bitbake2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index f96c1a1b6f..0e69207de7 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -276,6 +276,6 @@ if __name__ == "__main__":
276 except Exception: 276 except Exception:
277 ret = 1 277 ret = 1
278 import traceback 278 import traceback
279 traceback.print_exc(5) 279 traceback.print_exc()
280 sys.exit(ret) 280 sys.exit(ret)
281 281