examples/ip_pipeline: fix Python interpreter
authorChristian Ehrhardt <christian.ehrhardt@canonical.com>
Tue, 2 Aug 2016 06:40:00 +0000 (08:40 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 24 Aug 2016 16:11:21 +0000 (18:11 +0200)
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 <christian.ehrhardt@canonical.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
examples/ip_pipeline/config/diagram-generator.py
examples/ip_pipeline/config/pipeline-to-core-mapping.py

index f20cbcb..6b7170b 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python2
+#!/usr/bin/env python
 
 #   BSD LICENSE
 #
 
 #   BSD LICENSE
 #
index 37b131c..c2050b8 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python2
+#!/usr/bin/env python
 
 #   BSD LICENSE
 #
 
 #   BSD LICENSE
 #