forked from lix-project/lix
Merge pull request #1704 from lheckemann/buildenv-eol-fix
Fix "Unexpected EOF reading a line" error
This commit is contained in:
commit
cd74a55afc
|
@ -115,9 +115,9 @@ static void addPkg(const Path & pkgDir, int priority)
|
||||||
return;
|
return;
|
||||||
throw SysError(format("opening '%1%'") % propagatedFN);
|
throw SysError(format("opening '%1%'") % propagatedFN);
|
||||||
}
|
}
|
||||||
propagated = readLine(fd.get());
|
propagated = readFile(fd.get());
|
||||||
}
|
}
|
||||||
for (const auto & p : tokenizeString<std::vector<string>>(propagated, " "))
|
for (const auto & p : tokenizeString<std::vector<string>>(propagated, " \n"))
|
||||||
if (done.find(p) == done.end())
|
if (done.find(p) == done.end())
|
||||||
postponed.insert(p);
|
postponed.insert(p);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue