diff options
| author | Tom Stellard <thomas.stellard@amd.com> | 2014-01-29 20:03:24 +0000 | 
|---|---|---|
| committer | Tom Stellard <thomas.stellard@amd.com> | 2014-01-29 20:03:24 +0000 | 
| commit | ac0fb621cef63422ebec88e73f548a033dee93cc (patch) | |
| tree | 1c014471b3b2305889676ffebbd471a6c83dab3e | |
| parent | d2ad22ae41abb1864103bc25e23de694895e181b (diff) | |
| download | bcm5719-llvm-ac0fb621cef63422ebec88e73f548a033dee93cc.tar.gz bcm5719-llvm-ac0fb621cef63422ebec88e73f548a033dee93cc.zip  | |
Enforce python2 for systems that use python3 as their default.
Patch by: Dan Liew
llvm-svn: 200413
| -rwxr-xr-x | libclc/configure.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/libclc/configure.py b/libclc/configure.py index c3f757622a8..8a493978b27 100755 --- a/libclc/configure.py +++ b/libclc/configure.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python2  def c_compiler_rule(b, name, description, compiler, flags):    command = "%s -MMD -MF $out.d %s -c -o $out $in" % (compiler, flags)  | 

