From 4fd6ebf544f90a6d18e6828eb3edc7b75f3b90a2 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 15 Apr 2011 12:41:22 +1000 Subject: selftest: Remove duplication between BUILDIR and BINDIR Just have BINDIR, and have it default to ./bin Andrew Bartlett --- selftest/selftesthelpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'selftest/selftesthelpers.py') diff --git a/selftest/selftesthelpers.py b/selftest/selftesthelpers.py index 5b6c5a5349..6467cbf0e0 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", ""))) -- cgit