$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: David Abrahams (david.abrahams_at_[hidden])
Date: 2002-04-26 19:11:47
I was just looking at targets.jam, and found:
d = [ sequence.insertion-sort $(d) ] ;
__dependencies__ = [ sequence.merge $(__dependencies__) $(d) ] ;
The problem is that the call to sequence.merge is wrong. Should be:
__dependencies__ = [ sequence.merge $(__dependencies__) : $(d) ]
;
--------------------------------------------------------------^
I guess we should add an assertion in sequence.merge which checks that
the sequences are ordered.
-Dave
+---------------------------------------------------------------+
David Abrahams
C++ Booster (http://www.boost.org) O__ ==
Pythonista (http://www.python.org) c/ /'_ ==
resume: http://users.rcn.com/abrahams/resume.html (*) \(*) ==
email: david.abrahams_at_[hidden]
+---------------------------------------------------------------+