From 17e5594bec7cebe980857e4fe3e05837708f9f62 Mon Sep 17 00:00:00 2001 From: Jason Barrett Prado Date: Thu, 3 Mar 2016 16:14:26 -0800 Subject: [PATCH] Make gyb explicitly reference python2.7 The default python on some systems is not 2.7, but gyb needs python2.7 precisely. --- utils/gyb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/gyb b/utils/gyb index fcbceabf0024c..dece788e500ba 100755 --- a/utils/gyb +++ b/utils/gyb @@ -1,3 +1,3 @@ -#!/usr/bin/env python +#!/usr/bin/env python2.7 import gyb gyb.main()