From 487a4f90950c7e0667a717c62cbaf0eb9f94c1aa Mon Sep 17 00:00:00 2001 From: Christian Ehrhardt Date: Tue, 2 Aug 2016 08:40:00 +0200 Subject: [PATCH] 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 --- examples/ip_pipeline/config/diagram-generator.py | 2 +- examples/ip_pipeline/config/pipeline-to-core-mapping.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 # -- 2.20.1