summaryrefslogtreecommitdiffstats
path: root/src/nbb.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/nbb.in')
-rw-r--r--src/nbb.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nbb.in b/src/nbb.in
index 0c93a7f..c7a8dd3 100644
--- a/src/nbb.in
+++ b/src/nbb.in
@@ -29,15 +29,15 @@ if False:
logging.error("xxx error")
if __name__ == '__main__':
- pythondir = "@pythondir@"
+ pkgpythondir = "@pkgpythondir@"
lib_found = False
- #print "pythondir", pythondir
+ #print "pkgpythondir", pkgpythondir
#print "sys.path", sys.path
sys.stdout.flush()
orig_path = sys.path
for cond, path in [
(True, orig_path),
- (os.path.exists(pythondir), [pythondir] + orig_path),
+ (os.path.exists(pkgpythondir), [pkgpythondir] + orig_path),
]:
if cond:
sys.path = path