From d1cf0a1b8f5bf3e1216b9e5240e1508990194e45 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= <tniessen@tnie.de>
Date: Mon, 25 Nov 2019 17:00:44 -0400
Subject: [PATCH] build: use Node.js instead of Node in configure

---
 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