Skip to content

Commit 017492e

Browse files
Trottgibfahn
authored andcommitted
build: add serial commas to messages in configure script
PR-URL: #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>
1 parent c24fafa commit 017492e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ parser.add_option("--enable-vtune-profiling",
144144
dest="enable_vtune_profiling",
145145
help="Enable profiling support for Intel VTune profiler to profile "
146146
"JavaScript code executed in nodejs. This feature is only available "
147-
"for x32, x86 and x64 architectures.")
147+
"for x32, x86, and x64 architectures.")
148148

149149

150150
parser.add_option("--link-module",
@@ -841,7 +841,7 @@ def configure_node(o):
841841
o['variables']['node_enable_v8_vtunejit'] = b(options.enable_vtune_profiling)
842842
elif options.enable_vtune_profiling:
843843
raise Exception(
844-
'The VTune profiler for JavaScript is only supported on x32, x86 and x64 '
844+
'The VTune profiler for JavaScript is only supported on x32, x86, and x64 '
845845
'architectures.')
846846
else:
847847
o['variables']['node_enable_v8_vtunejit'] = 'false'

0 commit comments

Comments
 (0)