All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] examples: fix unusual-interpreter
@ 2016-08-01 12:28 Christian Ehrhardt
  2016-08-01 12:50 ` Thomas Monjalon
  2016-08-01 15:05 ` [PATCH] " Dumitrescu, Cristian
  0 siblings, 2 replies; 9+ messages in thread
From: Christian Ehrhardt @ 2016-08-01 12:28 UTC (permalink / raw)
  To: christian.ehrhardt, dev

Due to regular lintian checks in Debian packaging it surfaced that these
two scripts had a space in their #! statement which renders it to be
human, but not shell readable.

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>
---
 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 f20cbcb..7b1f8d6 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/python2
 
 #   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 37b131c..5ffc632 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/python2
 
 #   BSD LICENSE
 #
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-08-24 16:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-01 12:28 [PATCH] examples: fix unusual-interpreter Christian Ehrhardt
2016-08-01 12:50 ` Thomas Monjalon
2016-08-01 13:12   ` Christian Ehrhardt
2016-08-01 13:26     ` Thomas Monjalon
2016-08-01 15:11       ` Mcnamara, John
2016-08-02  6:40         ` [PATCH v2] " Christian Ehrhardt
2016-08-02 10:01           ` Dumitrescu, Cristian
2016-08-24 16:14             ` Thomas Monjalon
2016-08-01 15:05 ` [PATCH] " Dumitrescu, Cristian

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.