]> granicus.if.org Git - python/commitdiff
Various toolbox modules were generated in lib-dynload accidentally
authorJack Jansen <jack.jansen@cwi.nl>
Mon, 20 Aug 2001 15:31:56 +0000 (15:31 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Mon, 20 Aug 2001 15:31:56 +0000 (15:31 +0000)
in stead of in Carbon. Fixed.

Mac/scripts/genpluginprojects.py

index be3311358d4065976d2317b3bc54aabfd9a9d57f..9e7f5848aaf49382f4bea27b0d4527f6a34ee918 100644 (file)
@@ -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")