$NetBSD: patch-ab,v 1.3 2006/05/06 22:38:28 wiz Exp $ --- Dependencies/ZConfig-Zope-3.2.1/ZConfig/scripts/zconfig_schema2html.orig 2006-04-28 09:02:23.000000000 +0900 +++ Dependencies/ZConfig-Zope-3.2.1/ZConfig/scripts/zconfig_schema2html @@ -17,5 +17,18 @@ +import sys +import os +import cgi + +if __name__ == "__main__": + here = os.path.dirname(os.path.realpath(__file__)) + swhome = os.path.dirname(here) + for parts in [("src",), ("lib", "python"), ("Lib", "site-packages")]: + d = os.path.join(swhome, *(parts + ("ZConfig",))) + if os.path.isdir(d): + d = os.path.join(swhome, *parts) + sys.path.insert(0, d) + break + import ZConfig.loader from ZConfig.info import * -import sys, cgi