Boost logo

Boost :

From: Rene Rivera (grafik.list_at_[hidden])
Date: 2004-02-07 12:34:40


Li Lirong wrote:
> Here are some of the error messages:
>
>
> ...failed HardLink
> C:\Boost\lib\libboost_unit_test_framework-vc71-mt-s.lib...
> HardLink C:\Boost\lib\libboost_unit_test_framework-vc71-mt.lib
> Could Not Find C:\Boost\lib\libboost_unit_test_framework-vc71-mt.lib
>
> del /f/q C:\Boost\lib\libboost_unit_test_framework-vc71-mt.lib &&
> copy C:

Best laid plans gone to waste :-(

This is now fixed.. attached is the diff to
boost-root/tools/build/v1/allyourbase.jam...

-- 
-- Grafik - Don't Assume Anything
-- Redshift Software, Inc. - http://redshift-software.com
-- rrivera/acm.org - grafik/redshift-software.com - 102708583/icq

Index: allyourbase.jam
===================================================================
RCS file: /cvsroot/boost/boost/tools/build/v1/allyourbase.jam,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- allyourbase.jam 7 Jan 2004 14:00:49 -0000 1.49
+++ allyourbase.jam 7 Feb 2004 17:26:31 -0000 1.50
@@ -2105,7 +2105,8 @@
 
 actions HardLink
 {
- $(RM) $(<) && $(LN) $(>) $(<)
+ $(RM) $(<)
+ $(LN) $(>) $(<)
 }
 
 actions Install


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk