$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: David Abrahams (david.abrahams_at_[hidden])
Date: 2002-07-23 07:30:26
----- Original Message -----
From: "Beman Dawes" <bdawes_at_[hidden]>
> Why is the boost root ever specified as what GCC calls a "non-system"
> directory? Since the standard specifies that a "..." include which fails
> is then treated as a <...> include, it wouldn't seem necessary to specify
> the boost root as a "non-system" directory.
The culprit is this line (allyourbase.jam:1028):
HDRS on $(<) = [ unique $(LOCATE_SOURCE) $(SEARCH_SOURCE) $(HDRS) ] ;
which adds SEARCH_SOURCE to HDRS. You might try
HDRS on $(<) = [ unique $(LOCATE_SOURCE) $(HDRS) ] ;
instead. I can't promise this won't destabilize something. If there's a
problem for the Python library, I can try to work around it.
-Dave