Skip to content

Commit a82def5

Browse files
author
Shigeki Ohtsu
committedApr 11, 2015
build: fix error message in configure
Replace Node.js to io.js in error messages
1 parent b59420c commit a82def5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎configure

+3-3
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def get_llvm_version(cc):
360360
proc = subprocess.Popen(shlex.split(cc) + ['-v'], stdin=subprocess.PIPE,
361361
stderr=subprocess.PIPE, stdout=subprocess.PIPE)
362362
except OSError:
363-
print '''Node.js configure error: No acceptable C compiler found!
363+
print '''io.js configure error: No acceptable C compiler found!
364364
365365
Please make sure you have a C compiler installed on your system and/or
366366
consider adjusting the CC environment variable if you installed
@@ -385,7 +385,7 @@ def get_gas_version(cc):
385385
stdin=subprocess.PIPE, stderr=subprocess.PIPE,
386386
stdout=subprocess.PIPE)
387387
except OSError:
388-
print '''Node.js configure error: No acceptable C compiler found!
388+
print '''io.js configure error: No acceptable C compiler found!
389389
390390
Please make sure you have a C compiler installed on your system and/or
391391
consider adjusting the CC environment variable if you installed
@@ -443,7 +443,7 @@ def cc_macros():
443443
stdout=subprocess.PIPE,
444444
stderr=subprocess.PIPE)
445445
except OSError:
446-
print '''Node.js configure error: No acceptable C compiler found!
446+
print '''io.js configure error: No acceptable C compiler found!
447447
448448
Please make sure you have a C compiler installed on your system and/or
449449
consider adjusting the CC environment variable if you installed

0 commit comments

Comments
 (0)
Please sign in to comment.