Remove ART APEX from the bootstrap apexes

Test: forrest
Bug: 169779935
Change-Id: I65e2a2089fa12674f3abbbe2f154eeec984dd5df
This commit is contained in:
Jiyong Park 2021-01-28 21:13:49 +09:00
parent 00fd36cdef
commit b99c12ef10
1 changed files with 1 additions and 2 deletions

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;