Skip to content

Commit d288ec3

Browse files
daeyeontargos
authored andcommitted
build: fix conflicting V8 object print flags
Signed-off-by: Daeyeon Jeong <[email protected]> PR-URL: #54785 Reviewed-By: James M Snell <[email protected]>
1 parent d86f247 commit d288ec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1621,7 +1621,7 @@ def configure_v8(o):
16211621
o['variables']['v8_enable_short_builtin_calls'] = 1
16221622
if options.v8_enable_snapshot_compression:
16231623
o['variables']['v8_enable_snapshot_compression'] = 1
1624-
if options.v8_enable_object_print and options.v8_disable_object_print:
1624+
if all(opt in sys.argv for opt in ['--v8-enable-object-print', '--v8-disable-object-print']):
16251625
raise Exception(
16261626
'Only one of the --v8-enable-object-print or --v8-disable-object-print options '
16271627
'can be specified at a time.')

0 commit comments

Comments
 (0)