From 7586b049ba2cfbf6a67b2deaeadb36603a1bb346 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 20 Aug 2001 15:31:56 +0000 Subject: [PATCH] Various toolbox modules were generated in lib-dynload accidentally in stead of in Carbon. Fixed. --- Mac/scripts/genpluginprojects.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mac/scripts/genpluginprojects.py b/Mac/scripts/genpluginprojects.py index be3311358d..9e7f5848aa 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") -- 2.40.0