aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2020-03-13 16:40:02 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2020-03-15 20:34:17 -0700
commit2059d28bfd3cfedfcf7420f1c4627219811e81c4 (patch)
tree230bd4948fa8820cf9997efe00ea4282bf6a581a
parentc94cfe6ea7f4c2115f817c5836b1481060907e0d (diff)
[lldb/Utils] Use PYTHON_EXECUTABLE to configure lldb-dotest's shebang
Ideally we'd want all shebangs to be configurable, but that's not a viable solution. Given that lldb-dotest is already configured, we might as well make sure it uses the correct interpreter. Differential revision: https://reviews.llvm.org/D76167
-rwxr-xr-xlldb/utils/lldb-dotest/lldb-dotest.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/utils/lldb-dotest/lldb-dotest.in b/lldb/utils/lldb-dotest/lldb-dotest.in
index b5acd9ba29c5..edddaf4cd0c2 100755
--- a/lldb/utils/lldb-dotest/lldb-dotest.in
+++ b/lldb/utils/lldb-dotest/lldb-dotest.in
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!@PYTHON_EXECUTABLE@
import subprocess
import sys