$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2003-11-08 07:11:05
For some reason when rebuilding the regex lib I get pages and pages of
linker warning about duplicate symbols (because the library already exists
so the symbols are getting replaced), is there any reason not to just
replace:
if exist "$(<)" set _$(<:B)_="$(<)"
with
if exist "$(<)" DEL "$(<)"
which just deletes the old library so it always gets a clean rebuild.
Thanks,
John