2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 13:22:11 +00:00

Avoid a self-cycle in scc_root.

[SVN r78283]
This commit is contained in:
Steven Watanabe
2012-04-30 18:21:47 +00:00
parent 2020417354
commit 9572adeada

View File

@@ -1232,7 +1232,8 @@ static void make1cyclenode( TARGET * t, TARGET * scc_root )
++scc_root->asynccnt;
}
}
t->scc_root = scc_root;
if ( t != scc_root )
t->scc_root = scc_root;
}