From: Christian Ehrhardt Date: Tue, 2 Aug 2016 06:40:00 +0000 (+0200) Subject: examples/ip_pipeline: fix Python interpreter X-Git-Tag: spdx-start~6028 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=487a4f90950c7e0667a717c62cbaf0eb9f94c1aa;p=dpdk.git examples/ip_pipeline: fix Python interpreter Due to regular lintian checks in Debian packaging it surfaced that these two scripts had a space in their #! statement. It is changed to an interpreter compatible with Python 2 and 3. Fixes: 8673a3e8 ("examples/ip_pipeline: add config diagram generator") Fixes: fa667b46 ("examples/ip_pipeline: add core mappings script") Signed-off-by: Christian Ehrhardt Acked-by: Cristian Dumitrescu --- diff --git a/examples/ip_pipeline/config/diagram-generator.py b/examples/ip_pipeline/config/diagram-generator.py index f20cbcbb1b..6b7170b004 100755 --- a/examples/ip_pipeline/config/diagram-generator.py +++ b/examples/ip_pipeline/config/diagram-generator.py @@ -1,4 +1,4 @@ -#! /usr/bin/python2 +#!/usr/bin/env python # BSD LICENSE # diff --git a/examples/ip_pipeline/config/pipeline-to-core-mapping.py b/examples/ip_pipeline/config/pipeline-to-core-mapping.py index 37b131c611..c2050b82a9 100755 --- a/examples/ip_pipeline/config/pipeline-to-core-mapping.py +++ b/examples/ip_pipeline/config/pipeline-to-core-mapping.py @@ -1,4 +1,4 @@ -#! /usr/bin/python2 +#!/usr/bin/env python # BSD LICENSE #