Skip to content

Commit 514491e

Browse files
committed
build: fix cargo check when Temporal is disabled
1 parent d0fa608 commit 514491e

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
@@ -1563,7 +1563,7 @@ def check_compiler(o):
15631563
o['variables']['llvm_version'] = get_llvm_version(CC) if is_clang else '0.0'
15641564

15651565
# cargo and rustc are needed for Temporal.
1566-
if not options.v8_disable_temporal_support or not options.shared_temporal_capi:
1566+
if not options.v8_disable_temporal_support and not options.shared_temporal_capi:
15671567
# Minimum cargo and rustc versions should match values in BUILDING.md.
15681568
min_cargo_ver_tuple = (1, 82)
15691569
min_rustc_ver_tuple = (1, 82)

0 commit comments

Comments
 (0)