diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-01-26 09:42:27 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-02-01 02:45:07 +0100 |
commit | eecf2ac4c83e730dd402c410f7f2087d87d70d6f (patch) | |
tree | 7bad5417dcee2554abe313eb60a7707bcb81fd35 /selftest/selftesthelpers.py | |
parent | b7d5d01c35b875c0458a0c7145f3d67e7f731eba (diff) | |
download | samba-eecf2ac4c83e730dd402c410f7f2087d87d70d6f.tar.gz |
selftest: Remove unused support for --exeext
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 fc81c63664e..991574e05f6 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: |