From 2639c5043ed6749e207fe3f51969db7a43cdfff7 Mon Sep 17 00:00:00 2001 From: Andrew Bartholomew Date: Sat, 10 May 2014 10:58:07 -0400 Subject: build: use /usr/bin/env to call python Hardcoding the path to python instead of env is not recommended. This can break the build in some Linux environments that link /usr/bin/python to python3. Change-Id: I4c62eb391acc6d468ce24ac8640834e965e76e78 --- core/checktree | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/checktree') diff --git a/core/checktree b/core/checktree index b0b9cfa..2872683 100755 --- a/core/checktree +++ b/core/checktree @@ -1,4 +1,4 @@ -#!/usr/bin/python -E +#!/usr/bin/env python -E import sys, os, re -- cgit v1.1