summaryrefslogtreecommitdiff
path: root/www/zope3/patches/patch-aa
blob: a6f40057ff6b97bd8a8f298a96d561dceaf9634a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$NetBSD: patch-aa,v 1.3 2006/05/06 22:38:28 wiz Exp $

--- Dependencies/ZConfig-Zope-3.2.1/ZConfig/scripts/zconfig.orig	2006-04-28 09:02:23.000000000 +0900
+++ Dependencies/ZConfig-Zope-3.2.1/ZConfig/scripts/zconfig
@@ -40,2 +40,13 @@
 import sys
+import os
+
+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