Exit WAF after processing --python-scan to avoid incorrect builds, since WAF does not handle well files being generated into the source dir instead of the build dir

This commit is contained in:
Gustavo J. A. M. Carneiro
2008-10-02 17:15:09 +01:00
parent d607ae00f3
commit 03e1a6bae5

View File

@@ -353,7 +353,7 @@ class PythonScanTask(Task.TaskBase):
scan.stdin.close()
if scan.wait():
raise SystemExit(1)
raise SystemExit(0)
def build(bld):
if Params.g_options.python_disable: