Fix "Unexpected EOF reading a line" error
propagated-user-env-packages files in nixpkgs aren't all terminated by newlines, as buildenv expected. Now it does not require a terminating newline; note that this introduces a behaviour change: propagated user env packages may now be spread across multiple lines. However, nix 1.11.x still expects them to be on a single line so this shouldn't be used in nixpkgs for now.
This commit is contained in:
parent
b52846ab5b
commit
f986a44980
|
@ -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