commit | 7b70d98d1fe971bef0e7e569a1329c5458347112 | [log] [tgz] |
---|---|---|
author | Colin Cross <ccross@android.com> | Wed May 05 14:43:04 2021 -0700 |
committer | Colin Cross <ccross@android.com> | Wed May 05 14:43:04 2021 -0700 |
tree | ab4b255f2462c273e579a5009f3d767c828a4882 | |
parent | 10b66f6975ba9f7fd1afb2fb3497f850be2b4aaa [diff] |
Fix reference to uncleared variable in dex_preopt_odex_install.mk dex_preopt_odex_install.mk referenced $(built_module), which is only set by some prebuilt modules, leaving old values when building non-prebuilt modules. Use $(LOCAL_BUILT_MODULE) instead, which is set for all modules by base_rules.mk. Test: manual Change-Id: Iecf092f9869d5edda3671d0999987906781d023e
This is the Makefile-based portion of the Android Build System.
For documentation on how to run a build, see Usage.txt
For a list of behavioral changes useful for Android.mk writers see Changes.md
For an outdated reference on Android.mk files, see build-system.html. Our Android.mk files look similar, but are entirely different from the Android.mk files used by the NDK build system. When searching for documentation elsewhere, ensure that it is for the platform build system -- most are not.
This Makefile-based system is in the process of being replaced with Soong, a new build system written in Go. During the transition, all of these makefiles are read by Kati, and generate a ninja file instead of being executed directly. That's combined with a ninja file read by Soong so that the build graph of the two systems can be combined and run as one.