From d98805025d7d066d600bf16b7d1ad7b9513215cd Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Wed, 8 Jan 2014 11:19:21 -0800 Subject: [PATCH] Bug 957721 - Switch mach's shebang to look for python2.7; r=glandium OpenBSD doesn't have "python" on $PATH by default. "python" may also come from a non-2.7 Python. Switching the shebang will help ensure the user invokes mach with Python 2.7. There is a risk this may break mach for some people. If the masses complain, we may roll back. --- mach | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mach b/mach index 29ec13f8fde1..16efaa48a7ce 100755 --- a/mach +++ b/mach @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2.7 # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/.