[Python-ogre-commit] SF.net SVN: python-ogre: [428] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
From: <and...@us...> - 2007-10-16 14:42:45
|
Revision: 428 http://python-ogre.svn.sourceforge.net/python-ogre/?rev=428&view=rev Author: andy_miller Date: 2007-10-16 07:42:49 -0700 (Tue, 16 Oct 2007) Log Message: ----------- Typo in config, removed the 'strip'ing from the Sconscript for Linux as it was messing up the module installation. Modified Paths: -------------- trunk/python-ogre/PythonOgreConfig_posix.py trunk/python-ogre/SConstruct Modified: trunk/python-ogre/PythonOgreConfig_posix.py =================================================================== --- trunk/python-ogre/PythonOgreConfig_posix.py 2007-10-16 00:05:06 UTC (rev 427) +++ trunk/python-ogre/PythonOgreConfig_posix.py 2007-10-16 14:42:49 UTC (rev 428) @@ -135,7 +135,7 @@ ,os.path.join(PATH_OgreAddons,'videoplugin','theora','include') ,os.path.join(PATH_OgreAddons,'videoplugin','ptypes-1.8.3','include') ] -physxbase = os.path.joing(LOCAL_INCLUDE, 'PhysX','v2.7.2') +physxbase = os.path.join(LOCAL_INCLUDE, 'PhysX','v2.7.2') PATH_INCLUDE_PhysX= [ physxbase ,os.path.join(physxbase, 'Cooking','include') ,os.path.join(physxbase, 'Foundation','include') Modified: trunk/python-ogre/SConstruct =================================================================== --- trunk/python-ogre/SConstruct 2007-10-16 00:05:06 UTC (rev 427) +++ trunk/python-ogre/SConstruct 2007-10-16 14:42:49 UTC (rev 428) @@ -165,9 +165,9 @@ ## and lets have it install the output into the 'package_dir_name/ModuleName' dir and rename to the PydName _env.AddPostAction(package,\ 'mt.exe -nologo -manifest %(name)s.manifest -outputresource:%(name)s;2' % { 'name':package[index] } ) - else: - _env.AddPostAction(package,\ - '-strip -g -S -d --strip-debug -s %(name)s' % { 'name':package[index] } ) + #else: + # _env.AddPostAction(package,\ + # '-strip -g -S -d --strip-debug -s %(name)s' % { 'name':package[index] } ) _env.InstallAs(os.path.join(environment.package_dir_name, cls.parent, cls.ModuleName, cls.PydName), This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |