diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-16 17:27:16 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-16 17:27:43 +0200 |
commit | 38fd92b29bbbb4fcad20b3b870c3dd1bf6267e8c (patch) | |
tree | 6a7d1305162588d574c6f1765d86927ae8192a89 /build.sh | |
parent | b197c5cac90ea4f61e15c8c076c3d5dc4b4a4f8e (diff) | |
download | vendor_lineage-38fd92b29bbbb4fcad20b3b870c3dd1bf6267e8c.tar.gz vendor_lineage-38fd92b29bbbb4fcad20b3b870c3dd1bf6267e8c.tar.bz2 vendor_lineage-38fd92b29bbbb4fcad20b3b870c3dd1bf6267e8c.zip |
Build release zip files
In Replicant 6 in build/core/Makefile we had:
.PHONY: otapackage bacon
otapackage: $(INTERNAL_OTA_PACKAGE_TARGET)
bacon: otapackage
$(hide) ln -f $(INTERNAL_OTA_PACKAGE_TARGET) $(CM_TARGET_PACKAGE)
$(hide) $(MD5SUM) $(CM_TARGET_PACKAGE) > $(CM_TARGET_PACKAGE).md5sum
@echo -e ${CL_CYN}"Package Complete: $(CM_TARGET_PACKAGE)"${CL_RST}
Since the official Replicant build instructions use
vendor/replicant/build.sh we don't really need to add
back a bacon target.
In addition it will lower the maintenance costs if we manage
to stick to the AOSP way of building Android instead of the
way used by LineageOS.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ build() echo "starting to building for ${machine}: ${log}" source build/envsetup.sh lunch "replicant_${machine}-userdebug" - time make -j$parallel_tasks 2>&1 | tee "${log}" + time make -j$parallel_tasks otapackage 2>&1 | tee "${log}" # vendor/replicant/sign-build "${machine}" | tee -a "${log}" echo "${machine} DONE: ${log}" } |