$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2005-09-08 04:31:52
Hi Daniel,
> > Can you check (with "bjam -n -a"), if "RM" expands to "del /f" or to "rm
> > -f". The latter should produce no warning when file does not exists.
>
> It expands to the former (sorry, forgot to say I'm using standard Windows
> XP shell.)
So I though! And "del /?" does not give any way to suppress the warning.
Can you try adding:
if [ os.name ] = NT
{
RM = "if exist \"$(<[1])\" DEL \"$(<[1])\" ;
}
to gcc.jam, right after
RM = [ common.rm-command ] ;
?
If that fails, run "bjam -f-", type
ECHO $(OS) ;
Ctrl-Z
and tell the the output.
Thanks,
Volodya
-- Vladimir Prus http://vladimir_prus.blogspot.com Boost.Build V2: http://boost.org/boost-build2