From: Jack Jansen Date: Mon, 20 Aug 2001 15:31:56 +0000 (+0000) Subject: Various toolbox modules were generated in lib-dynload accidentally X-Git-Tag: v2.2a3~415 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7586b049ba2cfbf6a67b2deaeadb36603a1bb346;p=thirdparty%2FPython%2Fcpython.git Various toolbox modules were generated in lib-dynload accidentally in stead of in Carbon. Fixed. --- diff --git a/Mac/scripts/genpluginprojects.py b/Mac/scripts/genpluginprojects.py index be3311358d40..9e7f5848aaf4 100644 --- a/Mac/scripts/genpluginprojects.py +++ b/Mac/scripts/genpluginprojects.py @@ -40,9 +40,9 @@ def genpluginproject(architecture, module, # For the time being we generate two project files. Not as nice as # a single multitarget project, but easier to implement for now. genpluginproject("ppc", module, project, projectdir, sources, sourcedirs, - libraries, extradirs, extraexportsymbols) + libraries, extradirs, extraexportsymbols, outputdir) genpluginproject("carbon", module, project, projectdir, sources, sourcedirs, - libraries, extradirs, extraexportsymbols) + libraries, extradirs, extraexportsymbols, outputdir) return templatename = "template-%s" % architecture targetname = "%s.%s" % (module, architecture) @@ -123,7 +123,7 @@ def genallprojects(force=0): genpluginproject("all", "Evt", outputdir="::Lib:Carbon") genpluginproject("all", "Fm", outputdir="::Lib:Carbon") genpluginproject("ppc", "Help", outputdir="::Lib:Carbon") - genpluginproject("ppc", "Icn", libraries=["IconServicesLib"]) + genpluginproject("ppc", "Icn", libraries=["IconServicesLib"], outputdir="::Lib:Carbon") genpluginproject("carbon", "Icn", outputdir="::Lib:Carbon") genpluginproject("all", "List", outputdir="::Lib:Carbon") genpluginproject("carbon", "Menu", outputdir="::Lib:Carbon")