diff options
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/command/scons.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/distutils/command/scons.py b/numpy/distutils/command/scons.py index e98e4bf85..43fe8178f 100644 --- a/numpy/distutils/command/scons.py +++ b/numpy/distutils/command/scons.py @@ -273,6 +273,9 @@ class scons(old_build_ext): raise RuntimeError("importing numscons failed (error was %s), using " \ "scons within distutils is not possible without " "this package " % str(e)) + else: + # nothing to do, just leave it here. + return # XXX: when a scons script is missing, scons only prints warnings, and # does not return a failure (status is 0). We have to detect this from # distutils (this cannot work for recursive scons builds...) |