From 763b093eeb623cad2731eb2a8342064e6b9eb1fc Mon Sep 17 00:00:00 2001 From: Shigeki Ohtsu Date: Mon, 13 Apr 2015 10:19:05 +0900 Subject: [PATCH] build: fix error message in configure Replace Node.js to io.js in error messages. --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 06f0e9a531b558..ace367149cfb27 100755 --- a/configure +++ b/configure @@ -360,7 +360,7 @@ def get_llvm_version(cc): proc = subprocess.Popen(shlex.split(cc) + ['-v'], stdin=subprocess.PIPE, stderr=subprocess.PIPE, stdout=subprocess.PIPE) except OSError: - print '''Node.js configure error: No acceptable C compiler found! + print '''io.js configure error: No acceptable C compiler found! Please make sure you have a C compiler installed on your system and/or consider adjusting the CC environment variable if you installed @@ -385,7 +385,7 @@ def get_gas_version(cc): stdin=subprocess.PIPE, stderr=subprocess.PIPE, stdout=subprocess.PIPE) except OSError: - print '''Node.js configure error: No acceptable C compiler found! + print '''io.js configure error: No acceptable C compiler found! Please make sure you have a C compiler installed on your system and/or consider adjusting the CC environment variable if you installed @@ -443,7 +443,7 @@ def cc_macros(): stdout=subprocess.PIPE, stderr=subprocess.PIPE) except OSError: - print '''Node.js configure error: No acceptable C compiler found! + print '''io.js configure error: No acceptable C compiler found! Please make sure you have a C compiler installed on your system and/or consider adjusting the CC environment variable if you installed