[baker-baker] sandbox compile
T. Onoma
transami at runbox.com
Mon Dec 8 07:33:26 EST 2003
On Monday 08 December 2003 07:22 am, Mika Pesu wrote:
> all the compile time depencies needs to be compiled and installed and
> found on path, but run-time depencies can be installed afterwards.
i see. yes, that make sense. unfortunately that screws up the clean separation
of stages. instead of:
prioritized_recipes.each { |r| r.prepare }
prioritized_recipes.each { |r| r.compile }
prioritized_recipes.each { |r| r.install }
we have to do:
prioritized_recipes.each { |r|
r.prepare
r.compile
r.install
}
which is a big change, effecting how the command line works.
T.
More information about the Baker-baker
mailing list