summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Kesting <ckesting@google.com>2019-09-16 18:27:30 -0700
committerCody Kesting <ckesting@google.com>2019-09-16 18:27:30 -0700
commitc091e06bc077b22c37324893f22dea8d4a3eb1fd (patch)
tree38d19b4d9e24a3679f5c85423230d04911695724
parentcc80512f807caee5a4bef40941dc22313c43c1d7 (diff)
downloadcurrysrc-c091e06bc077b22c37324893f22dea8d4a3eb1fd.tar.gz
Update repackage-common.sh to not use make.
Currysrc can be used to repackage source files. The repackage-common.sh currently references 'make' in this process, which is now not supported by build/make/core/main.mk. Instead, build/soong needs to be used for this operation. Bug: 141146348 Test: make Change-Id: I468a7417fcac92f248bd395bb19d8bce46b5433c
-rw-r--r--scripts/repackage-common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/repackage-common.sh b/scripts/repackage-common.sh
index 9753f24..23985b2 100644
--- a/scripts/repackage-common.sh
+++ b/scripts/repackage-common.sh
@@ -101,7 +101,7 @@ function get_uncommitted_repackaged_files() {
}
cd ${ANDROID_BUILD_TOP}
-make -j15 currysrc
+build/soong/soong_ui.bash --make-mode currysrc
DEFAULT_CONSTRUCTORS_FILE=${PROJECT_DIR}/srcgen/default-constructors.txt
CORE_PLATFORM_API_FILE=${PROJECT_DIR}/srcgen/core-platform-api.txt