[Cppunit-cvs] cppunit2/src/cpput SConscript,1.4,1.5
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-03-05 11:02:35
|
Update of /cvsroot/cppunit/cppunit2/src/cpput In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19560/src/cpput Modified Files: SConscript Log Message: * changed from using string split() method to scons Split() helper function for portability with python 1.5.2. Index: SConscript =================================================================== RCS file: /cvsroot/cppunit/cppunit2/src/cpput/SConscript,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SConscript 4 Mar 2005 08:23:39 -0000 1.4 --- SConscript 5 Mar 2005 11:02:25 -0000 1.5 *************** *** 1,5 **** Import( 'env buildLibary' ) ! buildLibary( env, """ assert.cpp assertstring.cpp --- 1,5 ---- Import( 'env buildLibary' ) ! buildLibary( env, Split( """ assert.cpp assertstring.cpp *************** *** 12,15 **** testsuite.cpp thread.cpp ! """.split(), 'cpput' ) --- 12,15 ---- testsuite.cpp thread.cpp ! """ ), 'cpput' ) |