From ceb73e714afce53c4d736c1495e800e86d3cd3f2 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Mon, 4 Mar 2019 12:47:59 -0500 Subject: [PATCH] build: indicate that configure has done something If run without `--verbose` configure exits silently with no indication that it has done anything. Print a message on completion to indicate that the script has worked. Refs: https://github.com/nodejs/node/issues/23111 PR-URL: https://github.com/nodejs/node/pull/26436 Refs: https://github.com/nodejs/node/issues/23111 Reviewed-By: Luigi Pinca Reviewed-By: Ruben Bridgewater --- configure.py | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.py b/configure.py index 9b659deb5cb700..83703964e54709 100755 --- a/configure.py +++ b/configure.py @@ -1640,3 +1640,4 @@ def make_bin_override(): print_verbose("running: \n " + " ".join(['python', 'tools/gyp_node.py'] + gyp_args)) run_gyp(gyp_args) +info('configure completed successfully')