mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 13:22:11 +00:00
Bugfix: correctly handle project references with absolute paths on Windows.
Thanks to Toon Knapen for the bug report. * build/project.jam (find): Call path.make on the project name. [SVN r26250]
This commit is contained in:
@@ -128,7 +128,8 @@ rule find ( name : current-location )
|
||||
|
||||
if ! $(project-module)
|
||||
{
|
||||
local location = [ path.root $(name) $(current-location) ] ;
|
||||
local location = [ path.root
|
||||
[ path.make $(name) ] $(current-location) ] ;
|
||||
# If no project is registered for the given location, try to
|
||||
# load it. First see if we have Jamfile. If not we might have project
|
||||
# root, willing to act as Jamfile. In that case, project-root
|
||||
|
||||
Reference in New Issue
Block a user