[clang] e827d74 - [clang][deps] Specify Python 3 in shebang

Jan Svoboda via cfe-commits cfe-commits at lists.llvm.org
Mon May 17 04:02:48 PDT 2021


Author: Jan Svoboda
Date: 2021-05-17T13:02:25+02:00
New Revision: e827d74a97dcf6623470baf3bda86b1c9544e3df

URL: https://github.com/llvm/llvm-project/commit/e827d74a97dcf6623470baf3bda86b1c9544e3df
DIFF: https://github.com/llvm/llvm-project/commit/e827d74a97dcf6623470baf3bda86b1c9544e3df.diff

LOG: [clang][deps] Specify Python 3 in shebang

Some build bots don't like plain `python` in the shebang: https://lab.llvm.org/buildbot/#/builders/139/builds/4147.

Added: 
    

Modified: 
    clang/utils/module-deps-to-rsp.py

Removed: 
    


################################################################################
diff  --git a/clang/utils/module-deps-to-rsp.py b/clang/utils/module-deps-to-rsp.py
index 56402bf029b67..7b0534deedfbc 100755
--- a/clang/utils/module-deps-to-rsp.py
+++ b/clang/utils/module-deps-to-rsp.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Converts clang-scan-deps output into response files.
 #   * For modules, arguments in the resulting response file are enough to build a PCM.


        


More information about the cfe-commits mailing list