Update of /cvsroot/cppunit/cppunit2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23479
Modified Files:
sconstruct
Log Message:
* use a single sconsign database
Index: sconstruct
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/sconstruct,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** sconstruct 23 Feb 2005 23:13:16 -0000 1.2
--- sconstruct 24 Feb 2005 07:15:03 -0000 1.3
***************
*** 1,3 ****
! import sys
#env = Environment( CCFLAGS = '-GX -GR -nologo',
--- 1,12 ----
! import os
! import os.path
!
! # Ensure build directory exist (SConsignFile fail otherwise!)
! if not os.path.exists( Dir('#buildscons').abspath ):
! os.mkdir( Dir('#buildscons').abspath )
!
! # Store all dependencies signature in a database
! SConsignFile( 'buildscons/.sconsign.dbm' )
!
#env = Environment( CCFLAGS = '-GX -GR -nologo',
|