diff options
author | Steven R. Loomis <srl@icu-project.org> | 2014-12-10 09:04:33 -0800 |
---|---|---|
committer | Julien Gilli <julien.gilli@joyent.com> | 2014-12-15 13:55:11 -0800 |
commit | 69b122a6422e3be0417ba3ccf62f3ba914baff91 (patch) | |
tree | f5bf95c364728e05d4be61f7724791f50541a0af /configure | |
parent | 0603c8345b7c40f9723277d5ae1f44041627dbab (diff) | |
download | node-69b122a6422e3be0417ba3ccf62f3ba914baff91.tar.gz |
build: configure return exit status from gyp
Previously, 'configure' would not return an exit status
if gyp blows up. This can be tested via:
date >> node.gyp ; ./configure && echo A-OK
You will get "A-OK" even though gyp had failed.
Signed-off-by: Julien Gilli <julien.gilli@joyent.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -730,4 +730,4 @@ else: gyp_args += args -subprocess.call(gyp_args) +sys.exit(subprocess.call(gyp_args)) |