[Zope3-checkins] SVN: Zope3/trunk/bin/mkzopeinstance fix the search for the Zope installation on Windows (correctly this time)

Fred L. Drake, Jr. fred at zope.com
Mon May 17 14:52:14 EDT 2004


Log message for revision 24780:
fix the search for the Zope installation on Windows (correctly this time)


-=-
Modified: Zope3/trunk/bin/mkzopeinstance
===================================================================
--- Zope3/trunk/bin/mkzopeinstance	2004-05-17 17:46:34 UTC (rev 24779)
+++ Zope3/trunk/bin/mkzopeinstance	2004-05-17 18:52:14 UTC (rev 24780)
@@ -23,7 +23,7 @@
 here = os.path.dirname(os.path.realpath(__file__))
 swhome = os.path.dirname(here)
 
-for parts in [("src",), ("lib", "python"), ("Lib",)]:
+for parts in [("src",), ("lib", "python"), ("Lib", "site-packages")]:
     d = os.path.join(swhome, *(parts + ("zope", "app", "process")))
     if os.path.isdir(d):
         d = os.path.join(swhome, *parts)




More information about the Zope3-Checkins mailing list