From 4befe28c111159fbec37c5a152eace00cddbc0a9 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Wed, 19 Apr 2006 21:10:11 +0000 Subject: [PATCH] Fix file reading on Windows. [SVN r33748] --- src/util/doc.jam | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/util/doc.jam b/src/util/doc.jam index 1c79c54df..5f4829709 100644 --- a/src/util/doc.jam +++ b/src/util/doc.jam @@ -14,6 +14,7 @@ import set ; import container ; import "class" ; import sequence ; +import path ; # The type of output to generate. # "console" is formated text echoed to the console (the default); @@ -901,6 +902,7 @@ local rule read-file ( file # The file to read in. ) { + file = [ path.native [ path.root [ path.make $(file) ] [ path.pwd ] ] ] ; if ! $(.file<$(file)>.lines) { local content ;