From 4cd02dc116a6577136b995f6a7618c4553ff4f70 Mon Sep 17 00:00:00 2001 From: Howard Chen Date: Fri, 12 Nov 2021 13:27:11 +0800 Subject: [PATCH] Avoid to use make directly Buildbot does not allow script to call make directly. Test: ./development/gsi/build_with_kernel/repack_kernels.sh Bug: 198363484 Change-Id: Ia24cae56af27c6c73327002ebbed2c067c490851 --- gsi/build_with_kernel/repack_kernels_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gsi/build_with_kernel/repack_kernels_common.sh b/gsi/build_with_kernel/repack_kernels_common.sh index ebed4715c..e0df9956e 100755 --- a/gsi/build_with_kernel/repack_kernels_common.sh +++ b/gsi/build_with_kernel/repack_kernels_common.sh @@ -36,7 +36,7 @@ function prepare_lz4() if ! [ -f ${LZ4} ]; then echo "make $LZ4" cd ${WD} - make lz4 + build/soong/soong_ui.bash --make-mode lz4 cd - fi }