|
Boost-Commit : |
From: kbelco_at_[hidden]
Date: 2008-05-17 14:04:04
Author: noel_belcourt
Date: 2008-05-17 14:04:04 EDT (Sat, 17 May 2008)
New Revision: 45456
URL: http://svn.boost.org/trac/boost/changeset/45456
Log:
Patch tr1/test Jamfile so compile actions are correct.
Text files modified:
trunk/libs/tr1/test/Jamfile.v2 | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
Modified: trunk/libs/tr1/test/Jamfile.v2
==============================================================================
--- trunk/libs/tr1/test/Jamfile.v2 (original)
+++ trunk/libs/tr1/test/Jamfile.v2 2008-05-17 14:04:04 EDT (Sat, 17 May 2008)
@@ -46,13 +46,11 @@
}
for local file2 in [ glob config/tr1_has_tr1*fail.cpp ]
{
- local test = [ compile-fail $(file2) ] ;
- all_rules += $(test) : $(TR1_PROPERTIES) ;
+ all_rules += [ compile-fail $(file2) : $(TR1_PROPERTIES) ] ;
}
for local filec in [ glob config/tr1_has_tr1*pass.cpp ]
{
- local test = [ compile $(filec) ] ;
- all_rules += $(test) : $(TR1_PROPERTIES) ;
+ all_rules += [ compile $(filec) : $(TR1_PROPERTIES) ] ;
}
for local file3 in [ glob type_traits/*.cpp ]
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk