diff options
author | Greg Hudson <ghudson@mit.edu> | 2010-05-13 16:46:50 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2010-05-13 16:46:50 +0000 |
commit | 592c43b440bccf0530f7935f926a7f74e12ff7c8 (patch) | |
tree | 6235ddc65e36b74bc5cd59e8bdcb85b377f77d5a /src | |
parent | fe1aa88556d88ae9347fbb19e9d45a815908adbf (diff) | |
download | krb5-592c43b440bccf0530f7935f926a7f74e12ff7c8.tar.gz krb5-592c43b440bccf0530f7935f926a7f74e12ff7c8.tar.xz krb5-592c43b440bccf0530f7935f926a7f74e12ff7c8.zip |
Make k5test.py work for builds in the source dir
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24015 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r-- | src/util/k5test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/k5test.py b/src/util/k5test.py index 9ac1fc8458..880c6bd4f2 100644 --- a/src/util/k5test.py +++ b/src/util/k5test.py @@ -387,7 +387,7 @@ def _find_buildtop(): def _find_srctop(): - scriptdir = os.path.dirname(sys.argv[0]) + scriptdir = os.path.abspath(os.path.dirname(sys.argv[0])) if not scriptdir: scriptdir = os.getcwd() root = _find_root(scriptdir) |