diff --git a/cmake/targets/BuildBun.cmake b/cmake/targets/BuildBun.cmake index c9ae8632ef..80eeef5772 100644 --- a/cmake/targets/BuildBun.cmake +++ b/cmake/targets/BuildBun.cmake @@ -1219,9 +1219,7 @@ if(NOT BUN_CPP_ONLY) # ==856230==See https://github.com/google/sanitizers/issues/856 for possible workarounds. # the linked issue refers to very old kernels but this still happens to us on modern ones. # disabling ASLR to run the binary works around it - set(TEST_BUN_COMMAND_BASE - env BUN_DEBUG_QUIET_LOGS=1 - ${BUILD_PATH}/${bunExe} --revision) + set(TEST_BUN_COMMAND_BASE ${BUILD_PATH}/${bunExe} --revision) set(TEST_BUN_COMMAND_ENV_WRAP ${CMAKE_COMMAND} -E env BUN_DEBUG_QUIET_LOGS=1) if (LINUX AND ENABLE_ASAN) diff --git a/cmake/tools/SetupWebKit.cmake b/cmake/tools/SetupWebKit.cmake index 6b0a392546..421b28aae5 100644 --- a/cmake/tools/SetupWebKit.cmake +++ b/cmake/tools/SetupWebKit.cmake @@ -2,7 +2,7 @@ option(WEBKIT_VERSION "The version of WebKit to use") option(WEBKIT_LOCAL "If a local version of WebKit should be used instead of downloading") if(NOT WEBKIT_VERSION) - set(WEBKIT_VERSION c244f567ab804c2558067d00733013c01725d824) + set(WEBKIT_VERSION 017930ebf915121f8f593bef61cbbca82d78132d) endif() string(SUBSTRING ${WEBKIT_VERSION} 0 16 WEBKIT_VERSION_PREFIX)