diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-15 12:41:22 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-16 11:43:04 +0200 |
commit | 4fd6ebf544f90a6d18e6828eb3edc7b75f3b90a2 (patch) | |
tree | 5d3d75728d97688bb99f2200613ff46c66bfc6b5 /selftest/selftesthelpers.py | |
parent | cfb44f63a4eadfd34c0cf7b003b677e43284376f (diff) | |
download | samba-4fd6ebf544f90a6d18e6828eb3edc7b75f3b90a2.tar.gz |
selftest: Remove duplication between BUILDIR and BINDIR
Just have BINDIR, and have it default to ./bin
Andrew Bartlett
Diffstat (limited to 'selftest/selftesthelpers.py')
-rw-r--r-- | selftest/selftesthelpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/selftest/selftesthelpers.py b/selftest/selftesthelpers.py index 5b6c5a53494..6467cbf0e04 100644 --- a/selftest/selftesthelpers.py +++ b/selftest/selftesthelpers.py @@ -28,7 +28,7 @@ def source4dir(): return os.path.normpath(os.path.join(srcdir(), "source4")) def bindir(): - return os.path.normpath(os.path.join(os.getenv("BUILDDIR", "."), "bin")) + return os.path.normpath(os.getenv("BINDIR", "./bin")) def binpath(name): return os.path.join(bindir(), "%s%s" % (name, os.getenv("EXEEXT", ""))) |