[Zope-CVS] CVS: Packages/Zope2+3 - setup2.py:1.2

Jeremy Hylton jeremy at zope.com
Wed Mar 3 16:51:32 EST 2004


Update of /cvs-repository/Packages/Zope2+3
In directory cvs.zope.org:/tmp/cvs-serv9430

Modified Files:
	setup2.py 
Log Message:
Fix calculation of PACKAGE_ROOT so that it is an absolute path.

This fixes the build problem with dcpyexpat.


=== Packages/Zope2+3/setup2.py 1.1.1.1 => 1.2 ===
--- Packages/Zope2+3/setup2.py:1.1.1.1	Wed Mar  3 16:36:10 2004
+++ Packages/Zope2+3/setup2.py	Wed Mar  3 16:51:32 2004
@@ -171,7 +171,7 @@
 AUTHOR = 'Zope Corporation and Contributors'
 
 # Most modules are in lib/python in the source distribution
-PACKAGES_ROOT = os.path.join('src')
+PACKAGES_ROOT = os.path.join(BASE_DIR, 'src')
 os.chdir(PACKAGES_ROOT)
 
 EXTENSIONCLASS_INCLUDEDIRS = ['ExtensionClass']




More information about the Zope-CVS mailing list