From ac0fb621cef63422ebec88e73f548a033dee93cc Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Wed, 29 Jan 2014 20:03:24 +0000 Subject: [PATCH] Enforce python2 for systems that use python3 as their default. Patch by: Dan Liew llvm-svn: 200413 --- libclc/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libclc/configure.py b/libclc/configure.py index c3f757622a8e..8a493978b27c 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)