From ab1445a006cc5a5513896c629186f21a0ca3a904 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Thu, 28 Oct 2021 16:33:53 -0700 Subject: [PATCH] Use --skip-config --soong-only instead of --skip-make --skip-make is deprecated because of its odd behavior around the out/.soong.kati_enabled file. Replace it with --skip-config --soong-only instead, which will unambigiously skip running kati. Bug: 204136549 Test: None, development/vndk/tools/header-checker/android/build-prebuilts.sh already broken Change-Id: Ibdc052f86fa177304e53247e69371933b618180e --- vndk/tools/header-checker/android/build-prebuilts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vndk/tools/header-checker/android/build-prebuilts.sh b/vndk/tools/header-checker/android/build-prebuilts.sh index 018b0ac5c..b093bbf2b 100755 --- a/vndk/tools/header-checker/android/build-prebuilts.sh +++ b/vndk/tools/header-checker/android/build-prebuilts.sh @@ -71,7 +71,7 @@ if [ "${OS}" = "darwin" ]; then fi # Build binaries and shared libs -build/soong/soong_ui.bash --make-mode --skip-make "${binaries[@]}" "${libs[@]}" +build/soong/soong_ui.bash --make-mode --skip-config --soong-only "${binaries[@]}" "${libs[@]}" # Copy binaries and shared libs SOONG_DIST="${SOONG_OUT}/dist"