From 08a40e20087ad0ba9ad5ee03a2c07a336b3cc5de Mon Sep 17 00:00:00 2001 From: Tobias Nießen Date: Mon, 25 Nov 2019 17:00:44 -0400 Subject: build: use Node.js instead of Node in configure PR-URL: https://github.com/nodejs/node/pull/30642 Reviewed-By: Richard Lau Reviewed-By: Colin Ihrig Reviewed-By: Gus Caplan Reviewed-By: Jiawen Geng Reviewed-By: Trivikram Kamat Reviewed-By: David Carlier Reviewed-By: Luigi Pinca --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index f199a35348..39decd9a55 100755 --- a/configure +++ b/configure @@ -20,7 +20,7 @@ del _ import sys from distutils.spawn import find_executable -print('Node configure: Found Python {0}.{1}.{2}...'.format(*sys.version_info)) +print('Node.js configure: Found Python {0}.{1}.{2}...'.format(*sys.version_info)) acceptable_pythons = ((3, 8), (3, 7), (3, 6), (3, 5), (2, 7)) if sys.version_info[:2] in acceptable_pythons: import configure -- cgit v1.2.3