master
Daniel Kolesa 2016-08-02 22:40:24 +01:00
parent f90a2fe474
commit e22c8074b8
1 changed files with 17 additions and 15 deletions

View File

@ -357,7 +357,8 @@ private:
ConstCharRange tname
) {
String repd;
for (auto &sr: rlist.iter()) for (auto &target: sr.rule->deps.iter()) {
for (auto &sr: rlist.iter()) {
for (auto &target: sr.rule->deps.iter()) {
ConstCharRange atgt = target.iter();
repd.clear();
auto lp = ostd::find(atgt, '%');
@ -376,6 +377,7 @@ private:
return r;
}
}
}
return 0;
}