Skip to content

Commit 5e0f393

Browse files
TrottMylesBorins
authored andcommitted
build: add serial commas to messages in configure script
PR-URL: #17464 Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 20dcbfc commit 5e0f393

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ parser.add_option("--enable-vtune-profiling",
146146
dest="enable_vtune_profiling",
147147
help="Enable profiling support for Intel VTune profiler to profile "
148148
"JavaScript code executed in nodejs. This feature is only available "
149-
"for x32, x86 and x64 architectures.")
149+
"for x32, x86, and x64 architectures.")
150150

151151

152152
parser.add_option("--link-module",
@@ -883,7 +883,7 @@ def configure_node(o):
883883
o['variables']['node_enable_v8_vtunejit'] = b(options.enable_vtune_profiling)
884884
elif options.enable_vtune_profiling:
885885
raise Exception(
886-
'The VTune profiler for JavaScript is only supported on x32, x86 and x64 '
886+
'The VTune profiler for JavaScript is only supported on x32, x86, and x64 '
887887
'architectures.')
888888
else:
889889
o['variables']['node_enable_v8_vtunejit'] = 'false'

0 commit comments

Comments
 (0)