summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorShigeki Ohtsu <ohtsu@iij.ad.jp>2015-04-13 10:19:05 +0900
committerShigeki Ohtsu <ohtsu@iij.ad.jp>2015-04-15 00:39:23 +0900
commita530b2baf12822dd21ff22d2dea8cc484ddf5dc3 (patch)
tree8c9c175c25e1d80678d594d4f5a00a1d49df93de /configure
parent4830b4bce81eb92f128e6b6a5bc62ce178fbec01 (diff)
downloadandroid-node-v8-a530b2baf12822dd21ff22d2dea8cc484ddf5dc3.tar.gz
android-node-v8-a530b2baf12822dd21ff22d2dea8cc484ddf5dc3.tar.bz2
android-node-v8-a530b2baf12822dd21ff22d2dea8cc484ddf5dc3.zip
build: fix error message in configure
Replace Node.js to io.js in error messages. Fixes: https://github.com/iojs/io.js/issues/589 PR-URL: https://github.com/iojs/io.js/pull/1389 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 80b6a7d3af..19ec28f92f 100755
--- a/configure
+++ b/configure
@@ -368,7 +368,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
@@ -393,7 +393,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
@@ -451,7 +451,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