Skip to content

Commit a530b2b

Browse files
author
Shigeki Ohtsu
committed
build: fix error message in configure
Replace Node.js to io.js in error messages. Fixes: #589 PR-URL: #1389 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 4830b4b commit a530b2b

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
@@ -368,7 +368,7 @@ def get_llvm_version(cc):
368368
proc = subprocess.Popen(shlex.split(cc) + ['-v'], stdin=subprocess.PIPE,
369369
stderr=subprocess.PIPE, stdout=subprocess.PIPE)
370370
except OSError:
371-
print '''Node.js configure error: No acceptable C compiler found!
371+
print '''io.js configure error: No acceptable C compiler found!
372372
373373
Please make sure you have a C compiler installed on your system and/or
374374
consider adjusting the CC environment variable if you installed
@@ -393,7 +393,7 @@ def get_gas_version(cc):
393393
stdin=subprocess.PIPE, stderr=subprocess.PIPE,
394394
stdout=subprocess.PIPE)
395395
except OSError:
396-
print '''Node.js configure error: No acceptable C compiler found!
396+
print '''io.js configure error: No acceptable C compiler found!
397397
398398
Please make sure you have a C compiler installed on your system and/or
399399
consider adjusting the CC environment variable if you installed
@@ -451,7 +451,7 @@ def cc_macros():
451451
stdout=subprocess.PIPE,
452452
stderr=subprocess.PIPE)
453453
except OSError:
454-
print '''Node.js configure error: No acceptable C compiler found!
454+
print '''io.js configure error: No acceptable C compiler found!
455455
456456
Please make sure you have a C compiler installed on your system and/or
457457
consider adjusting the CC environment variable if you installed

0 commit comments

Comments
 (0)