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

Make sure that we correctly find the root project if there's a project-config.jam

[SVN r64578]
This commit is contained in:
Steven Watanabe
2010-08-03 17:45:01 +00:00
parent a6c6480001
commit 1ca19a2f60

View File

@@ -408,7 +408,8 @@ rule xml-catalog ( )
root-project = [ $(root-project).project-module ] ;
while
[ project.attribute $(root-project) parent-module ] &&
[ project.attribute $(root-project) parent-module ] != user-config
[ project.attribute $(root-project) parent-module ] != user-config &&
[ project.attribute $(root-project) parent-module ] != project-config
{
root-project = [ project.attribute $(root-project) parent-module ] ;
}