* Remove the undocumented `noscan' feature. It's no longer necessary
now that reference scanning is sufficiently streamy.
This commit is contained in:
parent
e2a70b7ec0
commit
f459a5bb3a
1 changed files with 11 additions and 14 deletions
|
@ -1479,12 +1479,10 @@ void DerivationGoal::computeClosure()
|
|||
|
||||
/* For this output path, find the references to other paths contained
|
||||
in it. */
|
||||
PathSet references;
|
||||
if (!pathExists(path + "/nix-support/no-scan")) {
|
||||
references = scanForReferences(path, allPaths);
|
||||
PathSet references = scanForReferences(path, allPaths);
|
||||
|
||||
/* For debugging, print out the referenced and
|
||||
unreferenced paths. */
|
||||
/* For debugging, print out the referenced and unreferenced
|
||||
paths. */
|
||||
for (PathSet::iterator i = inputPaths.begin();
|
||||
i != inputPaths.end(); ++i)
|
||||
{
|
||||
|
@ -1494,7 +1492,6 @@ void DerivationGoal::computeClosure()
|
|||
else
|
||||
debug(format("referenced input: `%1%'") % *i);
|
||||
}
|
||||
}
|
||||
|
||||
allReferences[path] = references;
|
||||
|
||||
|
|
Loading…
Reference in a new issue