Do not inherit standlone project from user-config.
Since standalone projects can be defined by toolset modules, invoked from site-config.jam and user-config.jam, inheriting from not yet fully read modules is tricky. Especially when toolset module is invoked from site-config. We can't inherit from user-config, if we did not even start to load it! [SVN r28212]
This commit is contained in:
parent
85fe3ead5c
commit
7252940e83
@ -401,12 +401,13 @@ rule initialize (
|
||||
}
|
||||
else
|
||||
{
|
||||
# It's either jamroot, or standalone project.
|
||||
# If it's jamroot, inherit from user-config.
|
||||
if $(location)
|
||||
{
|
||||
parent-module = user-config ;
|
||||
jamroot = true ;
|
||||
}
|
||||
|
||||
parent-module = user-config ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user