commit | c06f48a21d8dcd6dc5e2c8c91c0eaed32b8bd50d | [log] [tgz] |
---|---|---|
author | David Brazdil <dbrazdil@google.com> | Mon Jul 02 11:06:19 2018 +0100 |
committer | David Brazdil <dbrazdil@google.com> | Mon Jul 02 11:19:53 2018 +0100 |
tree | 7680b574c94d276ee5cf343529ef563dcd7a1bd2 | |
parent | 3613193b311c4494eb508a3bf4f0e527dd23a540 [diff] |
Fix unzip on sdk_mac build Recent CL added a flag to an unzip command which does not restore the timestamps of extracted files. This is necessary because the extracted files are the output of the rule and thus the timestamp must be newer than the timestamp of the inputs. Unfortunately, the sdk_mac build has an old version of UnZip (5.52 vs 6.0) which does not support the flag. Replace it with find|touch. Test: m Change-Id: Ib1f218af4547a1d604b46e68b6ef50d45cb91ee9
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.