[Zope-Checkins] CVS: Zope/inst - build_extensions.py:1.12

Lennart Regebro lennart@torped.se
Tue, 17 Dec 2002 09:30:08 -0500


Update of /cvs-repository/Zope/inst
In directory cvs.zope.org:/tmp/cvs-serv30517/inst

Modified Files:
	build_extensions.py 
Log Message:
Merge to HEAD: The ZEO unit tests and wo_pcgi.py didn't run on Windows if the path to the python executable included a space.


=== Zope/inst/build_extensions.py 1.11 => 1.12 ===
--- Zope/inst/build_extensions.py:1.11	Wed Nov 13 12:53:54 2002
+++ Zope/inst/build_extensions.py	Tue Dec 17 09:30:07 2002
@@ -23,4 +23,4 @@
     print '-'*78
     print 'Building extension modules'
 
-    do('%s setup.py build_ext -i' % sys.executable)
+    do('"%s" setup.py build_ext -i' % sys.executable)