Revert "Enforce python2 for systems that use python3 as their default."

This reverts commit r200413.

This was breaking the build on systems where the python 2.x executable
was called python.

llvm-svn: 201239
This commit is contained in:
Tom Stellard 2014-02-12 14:54:17 +00:00
parent 2f235aebdb
commit 55d3746dbe
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/python
def c_compiler_rule(b, name, description, compiler, flags):
command = "%s -MMD -MF $out.d %s -c -o $out $in" % (compiler, flags)