Boost logo

Boost-Build :

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]
+---------------------------------------------------------------+

 


Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk