Skip to content

Commit 69b122a

Browse files
srl295Julien Gilli
authored and
Julien Gilli
committed
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 <[email protected]>
1 parent 0603c83 commit 69b122a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -730,4 +730,4 @@ else:
730730

731731
gyp_args += args
732732

733-
subprocess.call(gyp_args)
733+
sys.exit(subprocess.call(gyp_args))

0 commit comments

Comments
 (0)