From 55d3746dbebb15d23167dab8dc2108390f447617 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Wed, 12 Feb 2014 14:54:17 +0000 Subject: [PATCH] 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 --- libclc/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libclc/configure.py b/libclc/configure.py index 37ac4c2..9ad5526 100755 --- a/libclc/configure.py +++ b/libclc/configure.py @@ -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) -- 2.7.4