From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id C37992BA8 for ; Thu, 8 Dec 2016 16:51:21 +0100 (CET) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga101.jf.intel.com with ESMTP; 08 Dec 2016 07:51:20 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,320,1477983600"; d="scan'208";a="200480561" Received: from sivswdev02.ir.intel.com (HELO localhost.localdomain) ([10.237.217.46]) by fmsmga004.fm.intel.com with ESMTP; 08 Dec 2016 07:51:19 -0800 From: John McNamara To: dev@dpdk.org Cc: mkletzan@redhat.com, John McNamara Date: Thu, 8 Dec 2016 15:51:04 +0000 Message-Id: <1481212265-10229-4-git-send-email-john.mcnamara@intel.com> X-Mailer: git-send-email 1.7.0.7 In-Reply-To: <1481212265-10229-1-git-send-email-john.mcnamara@intel.com> References: <1481212265-10229-1-git-send-email-john.mcnamara@intel.com> Subject: [dpdk-dev] [PATCH v1 3/4] app: give python apps a consistent shebang line X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Dec 2016 15:51:22 -0000 Add a consistent "env python" shebang line to the DPDK Python apps so that they can call the default system python. Signed-off-by: John McNamara --- app/test/autotest_data.py | 2 +- app/test/autotest_test_funcs.py | 2 +- doc/guides/conf.py | 2 ++ tools/dpdk-devbind.py | 3 ++- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app/test/autotest_data.py b/app/test/autotest_data.py index 5176064..7be345a 100644 --- a/app/test/autotest_data.py +++ b/app/test/autotest_data.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # BSD LICENSE # diff --git a/app/test/autotest_test_funcs.py b/app/test/autotest_test_funcs.py index c482ea8..1fa8cf0 100644 --- a/app/test/autotest_test_funcs.py +++ b/app/test/autotest_test_funcs.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # BSD LICENSE # diff --git a/doc/guides/conf.py b/doc/guides/conf.py index 34c62de..97c5d0e 100644 --- a/doc/guides/conf.py +++ b/doc/guides/conf.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + # BSD LICENSE # Copyright(c) 2010-2015 Intel Corporation. All rights reserved. # All rights reserved. diff --git a/tools/dpdk-devbind.py b/tools/dpdk-devbind.py index 4f51a4b..a5b2af5 100755 --- a/tools/dpdk-devbind.py +++ b/tools/dpdk-devbind.py @@ -1,4 +1,5 @@ -#! /usr/bin/python +#!/usr/bin/env python + # # BSD LICENSE # -- 2.7.4