init: fix to avoid loading apex *.rc files twice
Test: adb shell dmesg | grep "init: Parsing file /apex" shows a single entry for each APEX'es *rc file Change-Id: I9006cc3d0cb7bdfe7532279f29d8095b7d16a807
This commit is contained in:
parent
c538656d7d
commit
9c4fa66706
1 changed files with 1 additions and 1 deletions
|
@ -1107,7 +1107,7 @@ static Result<void> do_parse_apex_configs(const BuiltinArguments& args) {
|
|||
// /apex/<name> paths, so unless we filter them out, we will parse the
|
||||
// same file twice.
|
||||
std::vector<std::string> paths = android::base::Split(path, "/");
|
||||
if (paths.size() >= 2 && paths[1].find('@') != std::string::npos) {
|
||||
if (paths.size() >= 3 && paths[2].find('@') != std::string::npos) {
|
||||
continue;
|
||||
}
|
||||
configs.push_back(path);
|
||||
|
|
Loading…
Reference in a new issue