Skip to content

Commit 65117fc

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 b72bf8c commit 65117fc

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
@@ -1625,7 +1625,7 @@ def configure_v8(o, configs):
16251625
o['variables']['v8_enable_short_builtin_calls'] = 1
16261626
if options.v8_enable_snapshot_compression:
16271627
o['variables']['v8_enable_snapshot_compression'] = 1
1628-
if options.v8_enable_object_print and options.v8_disable_object_print:
1628+
if all(opt in sys.argv for opt in ['--v8-enable-object-print', '--v8-disable-object-print']):
16291629
raise Exception(
16301630
'Only one of the --v8-enable-object-print or --v8-disable-object-print options '
16311631
'can be specified at a time.')

0 commit comments

Comments
 (0)