From 240de933f4201e8db625858f964bd1a8c7d95a37 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 7e9d0c9d168c0a..6c6da268c7888e 100755 --- a/configure.py +++ b/configure.py @@ -1696,3 +1696,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')