Merge "Remove ART APEX from the bootstrap apexes" am: dfab416188

Original change: https://android-review.googlesource.com/c/platform/system/core/+/1563459

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I24dfbd6280222b86dd3dd916128e4ca51028bfb7
This commit is contained in:
Treehugger Robot 2021-01-30 03:59:21 +00:00 committed by Automerger Merge Worker
commit 7472ac1537

View file

@ -127,8 +127,7 @@ static bool ExpandArgsAndExecv(const std::vector<std::string>& args, bool sigsto
static bool AreRuntimeApexesReady() {
struct stat buf;
return stat("/apex/com.android.art/", &buf) == 0 &&
stat("/apex/com.android.runtime/", &buf) == 0;
return stat("/apex/com.android.runtime/", &buf) == 0;
}
unsigned long Service::next_start_order_ = 1;