From: Phil Blundell Date: Sat, 20 Nov 2004 16:13:52 +0000 (+0000) Subject: base.oeclass: re-throw KeyboardInterrupt from anonymous function exception handler X-Git-Tag: Release-2010-05/1~16088 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f90d7d13c9f9d94ead938010fe4390e5173e95b;p=openembedded.git base.oeclass: re-throw KeyboardInterrupt from anonymous function exception handler BKrev: 419f6d40Nia6ANUspHvlhHKcqUz7AA --- diff --git a/classes/base.oeclass b/classes/base.oeclass index 2d4a21cafc..b3012f3cee 100644 --- a/classes/base.oeclass +++ b/classes/base.oeclass @@ -644,6 +644,8 @@ python __anonymous () { oe.build.exec_func('parse_manifest', d) oe.build.exec_func('read_shlibdeps', d) oe.build.exec_func('read_subpackage_metadata', d) + except exceptions.KeyboardInterrupt: + raise except Exception, e: oe.error("anonymous function: %s" % e) pass