diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-11 05:45:49 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-11 05:45:49 +0200 |
commit | 47d22189227c0dd6f2f370ade2cfb878eef0f240 (patch) | |
tree | 140e95547647681bec00137c935a5a1b0463247b /source4/setup/provision | |
parent | babdcc6135e6d3a91a9ddeae0555652026f09344 (diff) | |
download | samba-47d22189227c0dd6f2f370ade2cfb878eef0f240.tar.gz samba-47d22189227c0dd6f2f370ade2cfb878eef0f240.tar.bz2 samba-47d22189227c0dd6f2f370ade2cfb878eef0f240.zip |
Set sys.path for running inside source tree.
(This used to be commit b507109bb676715f7d9616e13b0e19305e9c2559)
Diffstat (limited to 'source4/setup/provision')
-rwxr-xr-x | source4/setup/provision | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/setup/provision b/source4/setup/provision index ad289aaaa3..2579bc4f19 100755 --- a/source4/setup/provision +++ b/source4/setup/provision @@ -26,7 +26,8 @@ import getopt import optparse import os, sys -sys.path.append("bin/python") +# Find right directory when running from source tree +sys.path.insert(0, "bin/python") import samba import param |