[libclc] r200413 - Enforce python2 for systems that use python3 as their default.

Tom Stellard thomas.stellard at amd.com
Wed Jan 29 12:03:24 PST 2014


Author: tstellar
Date: Wed Jan 29 14:03:24 2014
New Revision: 200413

URL: http://llvm.org/viewvc/llvm-project?rev=200413&view=rev
Log:
Enforce python2 for systems that use python3 as their default.

Patch by: Dan Liew

Modified:
    libclc/trunk/configure.py

Modified: libclc/trunk/configure.py
URL: http://llvm.org/viewvc/llvm-project/libclc/trunk/configure.py?rev=200413&r1=200412&r2=200413&view=diff
==============================================================================
--- libclc/trunk/configure.py (original)
+++ libclc/trunk/configure.py Wed Jan 29 14:03:24 2014
@@ -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)





More information about the cfe-commits mailing list