summaryrefslogtreecommitdiff
path: root/selftest/selftesthelpers.py
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-01-26 09:42:27 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-02-01 02:45:07 +0100
commiteecf2ac4c83e730dd402c410f7f2087d87d70d6f (patch)
tree7bad5417dcee2554abe313eb60a7707bcb81fd35 /selftest/selftesthelpers.py
parentb7d5d01c35b875c0458a0c7145f3d67e7f731eba (diff)
downloadsamba-eecf2ac4c83e730dd402c410f7f2087d87d70d6f.tar.gz
samba-eecf2ac4c83e730dd402c410f7f2087d87d70d6f.tar.bz2
samba-eecf2ac4c83e730dd402c410f7f2087d87d70d6f.zip
selftest: Remove unused support for --exeext
Diffstat (limited to 'selftest/selftesthelpers.py')
-rw-r--r--selftest/selftesthelpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/selftest/selftesthelpers.py b/selftest/selftesthelpers.py
index fc81c63664..991574e05f 100644
--- a/selftest/selftesthelpers.py
+++ b/selftest/selftesthelpers.py
@@ -36,7 +36,7 @@ binary_mapping = {}
def binpath(name):
if name in binary_mapping:
name = binary_mapping[name]
- return os.path.join(bindir(), "%s%s" % (name, os.getenv("EXEEXT", "")))
+ return os.path.join(bindir(), name)
binary_mapping_string = os.getenv("BINARY_MAPPING", None)
if binary_mapping_string is not None: