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
authorGustavo J. A. M. Carneiro <gjc@inescporto.pt>
Thu Oct 02 17:15:09 2008 +0100 (16 months ago)
changeset 3726d5a2890666e3
parent 3722 38ace50047e1
child 3727 27880cdd0019
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
bindings/python/wscript
     1.1 --- a/bindings/python/wscript	Sat Sep 27 15:32:04 2008 +0100
     1.2 +++ b/bindings/python/wscript	Thu Oct 02 17:15:09 2008 +0100
     1.3 @@ -353,7 +353,7 @@
     1.4          scan.stdin.close()
     1.5          if scan.wait():
     1.6              raise SystemExit(1)
     1.7 -
     1.8 +        raise SystemExit(0)
     1.9  
    1.10  def build(bld):
    1.11      if Params.g_options.python_disable: