From 1a8405c320f115d584a9094bf5878b8cf6d58893 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Fri, 13 Apr 2012 17:53:04 +0300 Subject: wafsamba: add support for separate rules in stages bld.process_separate_rule(rule) and conf.process_separate_rule(rule) will cause WAF to import wscript__ script into current context. Files wscript__ should exist in the current directory. This can be used to provide rules specific for alternative implementations of certain libraries Autobuild-User: Alexander Bokovoy Autobuild-Date: Fri Apr 13 18:34:39 CEST 2012 on sn-devel-104 --- buildtools/wafadmin/Utils.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'buildtools/wafadmin') diff --git a/buildtools/wafadmin/Utils.py b/buildtools/wafadmin/Utils.py index 080d928214..41dad570eb 100644 --- a/buildtools/wafadmin/Utils.py +++ b/buildtools/wafadmin/Utils.py @@ -111,9 +111,6 @@ class WscriptError(WafError): return (frame[0], frame[1]) return (None, None) -class WscriptCheckSkipped(WscriptError): - pass - indicator = is_win32 and '\x1b[A\x1b[K%s%s%s\r' or '\x1b[K%s%s%s\r' try: @@ -648,8 +645,6 @@ class Context(object): try: try: exec(compile(txt, file_path, 'exec'), dc) - except WscriptCheckSkipped: - pass except Exception: exc_type, exc_value, tb = sys.exc_info() raise WscriptError("".join(traceback.format_exception(exc_type, exc_value, tb)), base) -- cgit