summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-12-04 19:57:00 -0800
committerRich Trott <rtrott@gmail.com>2017-12-05 19:50:32 -0800
commitbfc59727c7412ccd4397da04630e53a36e3806d9 (patch)
tree346b7a8a8d829086e5232154af884d2d3514bcd0 /configure
parent9472d69d1d1e7865763ad660baae80b8820978e3 (diff)
downloadandroid-node-v8-bfc59727c7412ccd4397da04630e53a36e3806d9.tar.gz
android-node-v8-bfc59727c7412ccd4397da04630e53a36e3806d9.tar.bz2
android-node-v8-bfc59727c7412ccd4397da04630e53a36e3806d9.zip
build: add serial commas to messages in configure script
PR-URL: https://github.com/nodejs/node/pull/17464 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 13dcb601d0..98a96ac0cb 100755
--- a/configure
+++ b/configure
@@ -146,7 +146,7 @@ parser.add_option("--enable-vtune-profiling",
dest="enable_vtune_profiling",
help="Enable profiling support for Intel VTune profiler to profile "
"JavaScript code executed in nodejs. This feature is only available "
- "for x32, x86 and x64 architectures.")
+ "for x32, x86, and x64 architectures.")
parser.add_option("--link-module",
@@ -883,7 +883,7 @@ def configure_node(o):
o['variables']['node_enable_v8_vtunejit'] = b(options.enable_vtune_profiling)
elif options.enable_vtune_profiling:
raise Exception(
- 'The VTune profiler for JavaScript is only supported on x32, x86 and x64 '
+ 'The VTune profiler for JavaScript is only supported on x32, x86, and x64 '
'architectures.')
else:
o['variables']['node_enable_v8_vtunejit'] = 'false'