Mailing List Archive

CVS: python/dist/src/Mac/scripts genpluginprojects.py,1.26.6.1,1.26.6.2
Update of /cvsroot/python/python/dist/src/Mac/scripts
In directory usw-pr-cvs1:/tmp/cvs-serv1934/Python 2.2/Mac/scripts

Modified Files:
Tag: release22-maint
genpluginprojects.py
Log Message:
Oops, missed the prefixname optional arg when I applied the previous backport.

Index: genpluginprojects.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/scripts/genpluginprojects.py,v
retrieving revision 1.26.6.1
retrieving revision 1.26.6.2
diff -C2 -d -r1.26.6.1 -r1.26.6.2
*** genpluginprojects.py 25 Mar 2002 12:33:48 -0000 1.26.6.1
--- genpluginprojects.py 26 Mar 2002 23:38:16 -0000 1.26.6.2
***************
*** 37,41 ****
libraries=[], extradirs=[],
extraexportsymbols=[], outputdir=":::Lib:lib-dynload",
! libraryflags=None, stdlibraryflags=None):
if architecture == "all":
# For the time being we generate two project files. Not as nice as
--- 37,41 ----
libraries=[], extradirs=[],
extraexportsymbols=[], outputdir=":::Lib:lib-dynload",
! libraryflags=None, stdlibraryflags=None, prefixname=None):
if architecture == "all":
# For the time being we generate two project files. Not as nice as
***************
*** 79,83 ****
print "Warning: %s: sourcefile not found: %s"%(module, sources[0])
sourcedirs = []
! if architecture == "carbon":
prefixname = "mwerks_carbonplugin_config.h"
else:
--- 79,85 ----
print "Warning: %s: sourcefile not found: %s"%(module, sources[0])
sourcedirs = []
! if prefixname:
! pass
! elif architecture == "carbon":
prefixname = "mwerks_carbonplugin_config.h"
else: