[dpdk-dev] [PATCH] examples: fix unusual-interpreter

2016-08-01 Thread Thomas Monjalon
2016-08-01 15:12, Christian Ehrhardt: > On Mon, Aug 1, 2016 at 2:50 PM, Thomas Monjalon > wrote: > > 2016-08-01 14:28, Christian Ehrhardt: > > > 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 > > >

[dpdk-dev] [PATCH] examples: fix unusual-interpreter

2016-08-01 Thread Christian Ehrhardt
Hi Thomas, I agree on both changes you suggested, but not being the scripts author I wanted to change as few as possible. Also thanks for taking it into consideration even if just for lintian :-) If acceptable to you I'd ask to accept this as-is and consider the patch a head-up for all script owne

[dpdk-dev] [PATCH] examples: fix unusual-interpreter

2016-08-01 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Thomas Monjalon > Sent: Monday, August 1, 2016 2:26 PM > To: Christian Ehrhardt > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] examples: fix unusual-interpreter > > 201

[dpdk-dev] [PATCH] examples: fix unusual-interpreter

2016-08-01 Thread Dumitrescu, Cristian
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Christian Ehrhardt > Sent: Monday, August 1, 2016 1:29 PM > To: christian.ehrhardt at canonical.com; dev at dpdk.org > Subject: [dpdk-dev] [PATCH] examples: fix unusual-interpreter > > D

[dpdk-dev] [PATCH] examples: fix unusual-interpreter

2016-08-01 Thread Thomas Monjalon
2016-08-01 14:28, Christian Ehrhardt: > 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. [...] > -#! /usr/bin/python2 > +#!/usr/bin/python2 I think we can have a space in

[dpdk-dev] [PATCH] examples: fix unusual-interpreter

2016-08-01 Thread Christian Ehrhardt
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 mappi