From 80ada94cd36f72d1a5791bcfeb6de87dfddc5687 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Mon, 25 Nov 2019 17:00:44 -0400 Subject: [PATCH] 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 f199a353482bec..39decd9a55ccc7 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