diff --git a/tools/make-v8.sh b/tools/make-v8.sh index f53f013e0e4..8d8f090f0fe 100755 --- a/tools/make-v8.sh +++ b/tools/make-v8.sh @@ -53,7 +53,7 @@ if [ "$ARCH" = "s390x" ] || [ "$ARCH" = "ppc64le" ]; then gn gen -v "out.gn/$BUILD_ARCH_TYPE" --args="is_component_build=false is_debug=false use_goma=false goma_dir=\"None\" use_custom_libcxx=false v8_target_cpu=\"$TARGET_ARCH\" target_cpu=\"$TARGET_ARCH\" v8_enable_backtrace=true $CC_WRAPPER" ninja -v -C "out.gn/$BUILD_ARCH_TYPE" "${JOBS_ARG}" d8 cctest inspector-test else - DEPOT_TOOLS_DIR="$(cd _depot_tools && pwd)" + DEPOT_TOOLS_DIR="$(cd depot_tools && pwd)" # shellcheck disable=SC2086 PATH="$DEPOT_TOOLS_DIR":$PATH tools/dev/v8gen.py "$BUILD_ARCH_TYPE" $V8_BUILD_OPTIONS PATH="$DEPOT_TOOLS_DIR":$PATH ninja -C "out.gn/$BUILD_ARCH_TYPE/" "${JOBS_ARG}" d8 cctest inspector-test diff --git a/tools/v8/node_common.py b/tools/v8/node_common.py index b78e30c321d..f873065c1df 100755 --- a/tools/v8/node_common.py +++ b/tools/v8/node_common.py @@ -18,7 +18,7 @@ DEPOT_TOOLS_URL = \ def EnsureDepotTools(v8_path, fetch_if_not_exist): def _Get(v8_path): - depot_tools = os.path.join(v8_path, "_depot_tools") + depot_tools = os.path.join(v8_path, "depot_tools") try: gclient_path = os.path.join(depot_tools, "gclient.py") if os.path.isfile(gclient_path):