$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2004-01-19 08:40:10
Hi Zbynek,
> Can we use 'echo > $(<)' instead of 'touch $(<)' in testing.jam? This
> way it can be used even when there is no 'touch' :-) [i.e. cmd promt on
> windows]
Sure we can! The test box I use have "touch" as part of bcc install, so I
haven't caugth this problem.
I've changed the relevant portion to:
MAKE_FILE = [ common.file-creation-command ] ;
toolset.flags testing.unit-test LAUNCHER <testing.launcher> ;
actions unit-test
{
$(LAUNCHER) $(>) && $(MAKE_FILE) $(<)
}
And will commit it as soon as SF CVS access works again ;-)
- Volodya