From ca1cd6cbe1a3d4f5588d8b57f9e8854d1fe207a8 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Tue, 26 Mar 2002 23:38:16 +0000 Subject: [PATCH] Oops, missed the prefixname optional arg when I applied the previous backport. --- Mac/scripts/genpluginprojects.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Mac/scripts/genpluginprojects.py b/Mac/scripts/genpluginprojects.py index b8f65c3b9815..ade36bfb5444 100644 --- a/Mac/scripts/genpluginprojects.py +++ b/Mac/scripts/genpluginprojects.py @@ -36,7 +36,7 @@ def genpluginproject(architecture, module, sources=[], sourcedirs=[], libraries=[], extradirs=[], extraexportsymbols=[], outputdir=":::Lib:lib-dynload", - libraryflags=None, stdlibraryflags=None): + libraryflags=None, stdlibraryflags=None, prefixname=None): if architecture == "all": # For the time being we generate two project files. Not as nice as # a single multitarget project, but easier to implement for now. @@ -78,7 +78,9 @@ def genpluginproject(architecture, module, else: print "Warning: %s: sourcefile not found: %s"%(module, sources[0]) sourcedirs = [] - if architecture == "carbon": + if prefixname: + pass + elif architecture == "carbon": prefixname = "mwerks_carbonplugin_config.h" else: prefixname = "mwerks_plugin_config.h" -- 2.47.3