$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2005-02-09 03:56:16
Hi Joao,
> I've committed the QuickBook toolset to CVS (as
> tools/build/v2/tools/quickbook.jam).
Some comments:
1.
for local dir in $(search-dirs)
{
quickbook-dir += [ path.glob $(dir) : quickbook ] ;
}
can be replaced with:
quickbook-dir = [ path.glob $(search-dirs) : quickbook ] ;
2. The 'get-quickbook-command' seems to partly duplicate duplicate
'common.get-invocation-command'. Was there anything preventing reuse?
3. What's the difference between 'split-words' and regex.split?
- Volodya