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.

PR-URL: https://github.com/joyent/node/pull/8856
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Steven R. Loomis 2014-12-10 09:04:33 -08:00 коммит произвёл Ben Noordhuis
Родитель 687dfc9875
Коммит fb33b4ee33
1 изменённых файлов: 1 добавлений и 1 удалений

2
configure поставляемый
Просмотреть файл

@ -877,4 +877,4 @@ else:
gyp_args += args
subprocess.call(gyp_args)
sys.exit(subprocess.call(gyp_args))