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/scripting/bin/samba3dump | |
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/scripting/bin/samba3dump')
-rwxr-xr-x | source4/scripting/bin/samba3dump | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/scripting/bin/samba3dump b/source4/scripting/bin/samba3dump index 8f56d423d8..d89667233f 100755 --- a/source4/scripting/bin/samba3dump +++ b/source4/scripting/bin/samba3dump @@ -7,7 +7,10 @@ import optparse import os, sys -sys.path.append(os.path.join(os.path.dirname(__file__), "../python")) + +# Find right directory when running from source tree +sys.path.insert(0, "bin/python") + import samba import samba.samba3 |