Enforce python2 for systems that use python3 as their default.

Patch by: Dan Liew

llvm-svn: 200413
This commit is contained in:
Tom Stellard 2014-01-29 20:03:24 +00:00
parent d2ad22ae41
commit ac0fb621ce
1 changed files with 1 additions and 1 deletions

View File

@ -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)