summaryrefslogtreecommitdiffstats
path: root/Mac/scripts
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-08-20 15:31:56 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-08-20 15:31:56 (GMT)
commit7586b049ba2cfbf6a67b2deaeadb36603a1bb346 (patch)
treeda1a90f9c8576935facd363456b9192979a61df7 /Mac/scripts
parent29bb115bae2baa6b5fb0524e4ea4e5e0e96dca4e (diff)
downloadcpython-7586b049ba2cfbf6a67b2deaeadb36603a1bb346.zip
cpython-7586b049ba2cfbf6a67b2deaeadb36603a1bb346.tar.gz
cpython-7586b049ba2cfbf6a67b2deaeadb36603a1bb346.tar.bz2
Various toolbox modules were generated in lib-dynload accidentally
in stead of in Carbon. Fixed.
Diffstat (limited to 'Mac/scripts')
-rw-r--r--Mac/scripts/genpluginprojects.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/scripts/genpluginprojects.py b/Mac/scripts/genpluginprojects.py
index be33113..9e7f584 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")