From 1f0ad880fc27845d8402e31519a767bbf72a2d5e Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Wed, 2 Aug 2017 19:17:35 -0700 Subject: [PATCH] Fix LIB_DIR for Windows --- doc/Jamfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/Jamfile b/doc/Jamfile index c76d7eb1..cf3f2956 100644 --- a/doc/Jamfile +++ b/doc/Jamfile @@ -81,8 +81,9 @@ make index.xml rule make_doxygen_xml ( targets * : sources * : properties * ) { - LIB_DIR on $(targets) = [ path.parent [ path.root - [ on $(sources[1]) return $(SEARCH) ] [ path.pwd ] ] ] ; + LIB_DIR on $(targets) = + [ path.native [ path.parent [ path.root + [ on $(sources[1]) return $(SEARCH) ] [ path.pwd ] ] ] ] ; } if [ os.name ] = NT