Skip to content

Commit 515bc8c

Browse files
author
serge-sans-paille
committed
Harmonize Python shebang
Differential Revision: https://reviews.llvm.org/D83857
1 parent a2a3adc commit 515bc8c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+60
-60
lines changed

clang/utils/clangdiag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22

33
#----------------------------------------------------------------------
44
# Be sure to add the python path that points to the LLDB shared library.

clang/utils/modfuzz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#!/usr/bin/env python
22

33
# To use:
44
# 1) Update the 'decls' list below with your fuzzing configuration.

compiler-rt/lib/sanitizer_common/scripts/litlint_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22

33
# Tests for litlint.py
44
#

compiler-rt/test/sanitizer_common/android_commands/android_compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22

33
import os, sys, subprocess
44
from android_common import *

compiler-rt/test/sanitizer_common/android_commands/android_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22

33
import os, signal, sys, subprocess, tempfile
44
from android_common import *

compiler-rt/test/sanitizer_common/ios_commands/iossim_compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22

33
import os, sys, subprocess
44

compiler-rt/test/sanitizer_common/ios_commands/iossim_env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22

33
import os, sys, subprocess
44

compiler-rt/test/sanitizer_common/ios_commands/iossim_prepare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22

33
import json
44

compiler-rt/test/sanitizer_common/ios_commands/iossim_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22

33
import glob, os, pipes, sys, subprocess
44

debuginfo-tests/dexter/dexter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22
# DExTer : Debugging Experience Tester
33
# ~~~~~~ ~ ~~ ~ ~~
44
#

0 commit comments

Comments
 (0)