[Zope-Checkins] CVS: Zope/inst - setup.py:1.1.4.10
Fred L. Drake, Jr.
fred@zope.com
Thu, 20 Feb 2003 17:43:12 -0500
Update of /cvs-repository/Zope/inst
In directory cvs.zope.org:/tmp/cvs-serv11137
Modified Files:
Tag: new-install-branch
setup.py
Log Message:
Avoid some really long lines.
=== Zope/inst/setup.py 1.1.4.9 => 1.1.4.10 ===
--- Zope/inst/setup.py:1.1.4.9 Thu Feb 20 16:55:13 2003
+++ Zope/inst/setup.py Thu Feb 20 17:43:11 2003
@@ -293,28 +293,29 @@
ext_modules=[
Extension(name='ExtensionClass',
include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
- sources=['../Components/ExtensionClass/src/ExtensionClass.c']),
+ sources=[EXTENSIONCLASS_SRCDIR + "/ExtensionClass.c"]),
Extension(name='Acquisition',
include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
- sources=['../Components/ExtensionClass/src/Acquisition.c']),
+ sources=[EXTENSIONCLASS_SRCDIR + "/Acquisition.c"]),
Extension(name='MethodObject',
include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
- sources=['../Components/ExtensionClass/src/MethodObject.c']),
+ sources=[EXTENSIONCLASS_SRCDIR + "/MethodObject.c"]),
Extension(name='MultiMapping',
include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
- sources=['../Components/ExtensionClass/src/MultiMapping.c']),
+ sources=[EXTENSIONCLASS_SRCDIR + "/MultiMapping.c"]),
Extension(name='ThreadLock',
include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
- sources=['../Components/ExtensionClass/src/ThreadLock.c']),
+ sources=[EXTENSIONCLASS_SRCDIR + "/ThreadLock.c"]),
Extension(name='Missing',
include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
- sources=['../Components/ExtensionClass/src/Missing.c']),
+ sources=[EXTENSIONCLASS_SRCDIR + "/Missing.c"]),
Extension(name='Record',
include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
- sources=['../Components/ExtensionClass/src/Record.c']),
+ sources=[EXTENSIONCLASS_SRCDIR + "/Record.c"]),
Extension(name='ComputedAttribute',
include_dirs=EXTENSIONCLASS_INCLUDEDIRS,
- sources=['../Components/ExtensionClass/src/ComputedAttribute.c'])]
+ sources=[EXTENSIONCLASS_SRCDIR + "/ComputedAttribute.c"]),
+ ]
)
# HelpSys