From 171464c9bf13de679afe8ae9ea4e4d4837cb4c34 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Tue, 21 May 2024 13:53:21 +0000 Subject: [PATCH] Call `gclient runhooks` instead of `install-sysroot.py` --- steps/04-install-extras.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/steps/04-install-extras.sh b/steps/04-install-extras.sh index f3998c1b..d1f5546d 100755 --- a/steps/04-install-extras.sh +++ b/steps/04-install-extras.sh @@ -8,11 +8,13 @@ pushd "$SOURCE" case "$OS" in linux) - build/linux/sysroot_scripts/install-sysroot.py "--arch=$CPU" + build/install-build-deps.sh + gclient runhooks ;; android) build/install-build-deps.sh --android + gclient runhooks ;; esac