Revision: 481
Author: mbaas
Date: 2006-08-28 06:46:26 -0700 (Mon, 28 Aug 2006)
ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=481&view=rev
Log Message:
-----------
Small fix so that the environment file on Windows may contain native backslashes as path separator.
Modified Paths:
--------------
pyplusplus_dev/unittests/autoconfig.py
Modified: pyplusplus_dev/unittests/autoconfig.py
===================================================================
--- pyplusplus_dev/unittests/autoconfig.py 2006-08-28 09:16:02 UTC (rev 480)
+++ pyplusplus_dev/unittests/autoconfig.py 2006-08-28 13:46:26 UTC (rev 481)
@@ -29,10 +29,10 @@
code = [
"SharedLibrary( target=r'%(target)s'"
, " , source=[ %(sources)s ]"
- , " , LIBS=[ %s ]" % ','.join( [ '"%s"' % lib for lib in scons_config.libs ] )
- , " , LIBPATH=[ %s ]" % ','.join( [ '"%s"' % path for path in scons_config.libpath ] )
- , " , CPPPATH=[ %s ]" % ','.join( [ '"%s"' % path for path in scons_config.include_dirs] )
- , " , CCFLAGS=[ %s ]" % ','.join( [ '"%s"' % flag for flag in scons.ccflags ] )
+ , " , LIBS=[ %s ]" % ','.join( [ 'r"%s"' % lib for lib in scons_config.libs ] )
+ , " , LIBPATH=[ %s ]" % ','.join( [ 'r"%s"' % path for path in scons_config.libpath ] )
+ , " , CPPPATH=[ %s ]" % ','.join( [ 'r"%s"' % path for path in scons_config.include_dirs] )
+ , " , CCFLAGS=[ %s ]" % ','.join( [ 'r"%s"' % flag for flag in scons.ccflags ] )
, " , SHLIBPREFIX=''"
, " , SHLIBSUFFIX='%s'" % scons.suffix #explicit better then implicit
, ")" ]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|