examples: fix unusual-interpreter
[deb_dpdk.git] / debian / patches / ubuntu-fix-unusual-interpreter.patch
1 Description: examples: fix unusual-interpreter
2
3 Due to regular lintian checks in Debian packaging it surfaced that these
4 two scripts had a space in their #! statement which renders it to be
5 human, but not shell readable.
6
7 Fixes: 8673a3e8 ("examples/ip_pipeline: add config diagram generator")
8 Fixes: fa667b46 ("examples/ip_pipeline: add core mappings script")
9
10 This gets rid of lintian warning "W: dpdk-doc: unusual-interpreter"
11
12 Forwarded: yes
13 Author: Christian Ehrhardt <christian.ehrhardt@canonical.com>
14 Last-Update: 2016-08-01
15
16 --- a/examples/ip_pipeline/config/diagram-generator.py
17 +++ b/examples/ip_pipeline/config/diagram-generator.py
18 @@ -1,4 +1,4 @@
19 -#! /usr/bin/python2
20 +#!/usr/bin/python2
21  
22  #   BSD LICENSE
23  #
24 --- a/examples/ip_pipeline/config/pipeline-to-core-mapping.py
25 +++ b/examples/ip_pipeline/config/pipeline-to-core-mapping.py
26 @@ -1,4 +1,4 @@
27 -#! /usr/bin/python2
28 +#!/usr/bin/python2
29  
30  #   BSD LICENSE
31  #