diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-03 21:25:26 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-03 21:25:26 +0000 |
commit | 0eb59312c72bb5e0f3c0992085ad700fbd7c6e48 (patch) | |
tree | 043cceac86e349fb573f492cde66ccb482fb9378 | |
parent | 62c2632c555bc701d41f0eb1803bbf0660d7f0c0 (diff) |
Use /usr/bin/env to run Python for increased portability. Patch by
David Chisnall.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63661 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | tools/ccc/ccc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ccc/ccc b/tools/ccc/ccc index 030243b815..4043150c72 100755 --- a/tools/ccc/ccc +++ b/tools/ccc/ccc @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import os import sys |