Re: [dpdk-dev] [PATCH] Fix bash path in shebangs

2017-09-13 Thread Thomas Monjalon
13/09/2017 17:55, alan somers: > On Wed, Sep 13, 2017 at 9:39 AM, Thomas Monjalon wrote: > > 13/09/2017 16:35, alan somers: > >> On Wed, Sep 13, 2017 at 3:37 AM, Thomas Monjalon > >> wrote: > >> > 27/07/2017 22:12, asom...@gmail.com: > >> >> From: Alan Somers > >> >> > >> >> "/bin/bash" is a Li

Re: [dpdk-dev] [PATCH] Fix bash path in shebangs

2017-09-13 Thread alan somers
On Wed, Sep 13, 2017 at 9:39 AM, Thomas Monjalon wrote: > 13/09/2017 16:35, alan somers: >> On Wed, Sep 13, 2017 at 3:37 AM, Thomas Monjalon wrote: >> > 27/07/2017 22:12, asom...@gmail.com: >> >> From: Alan Somers >> >> >> >> "/bin/bash" is a Linuxism. "/usr/bin/env bash" is portable. >> > >> >

Re: [dpdk-dev] [PATCH] Fix bash path in shebangs

2017-09-13 Thread Thomas Monjalon
13/09/2017 16:35, alan somers: > On Wed, Sep 13, 2017 at 3:37 AM, Thomas Monjalon wrote: > > 27/07/2017 22:12, asom...@gmail.com: > >> From: Alan Somers > >> > >> "/bin/bash" is a Linuxism. "/usr/bin/env bash" is portable. > > > > Why is it an issue? > > > > Can you run dpdk-setup.sh on a non-Li

Re: [dpdk-dev] [PATCH] Fix bash path in shebangs

2017-09-13 Thread alan somers
On Wed, Sep 13, 2017 at 3:37 AM, Thomas Monjalon wrote: > 27/07/2017 22:12, asom...@gmail.com: >> From: Alan Somers >> >> "/bin/bash" is a Linuxism. "/usr/bin/env bash" is portable. > > Why is it an issue? > > Can you run dpdk-setup.sh on a non-Linux system? > Nope, because even dpdk-setup.sh a

Re: [dpdk-dev] [PATCH] Fix bash path in shebangs

2017-09-13 Thread Thomas Monjalon
27/07/2017 22:12, asom...@gmail.com: > From: Alan Somers > > "/bin/bash" is a Linuxism. "/usr/bin/env bash" is portable. Why is it an issue? Can you run dpdk-setup.sh on a non-Linux system?

Re: [dpdk-dev] [PATCH] Fix bash path in shebangs

2017-07-31 Thread alan somers
On Mon, Jul 31, 2017 at 11:06 AM, Wiles, Keith wrote: > >> On Jul 31, 2017, at 11:18 AM, alan somers wrote: >> >> On Mon, Jul 31, 2017 at 9:22 AM, Bruce Richardson >> wrote: >>> On Mon, Jul 31, 2017 at 09:11:11AM -0600, alan somers wrote: On Fri, Jul 28, 2017 at 3:28 AM, Bruce Richardson >>

Re: [dpdk-dev] [PATCH] Fix bash path in shebangs

2017-07-31 Thread Wiles, Keith
> On Jul 31, 2017, at 11:18 AM, alan somers wrote: > > On Mon, Jul 31, 2017 at 9:22 AM, Bruce Richardson > wrote: >> On Mon, Jul 31, 2017 at 09:11:11AM -0600, alan somers wrote: >>> On Fri, Jul 28, 2017 at 3:28 AM, Bruce Richardson >>> wrote: On Thu, Jul 27, 2017 at 02:41:46PM -0600, asom

Re: [dpdk-dev] [PATCH] Fix bash path in shebangs

2017-07-31 Thread alan somers
On Mon, Jul 31, 2017 at 9:22 AM, Bruce Richardson wrote: > On Mon, Jul 31, 2017 at 09:11:11AM -0600, alan somers wrote: >> On Fri, Jul 28, 2017 at 3:28 AM, Bruce Richardson >> wrote: >> > On Thu, Jul 27, 2017 at 02:41:46PM -0600, asom...@gmail.com wrote: >> >> From: Alan Somers >> >> >> >> "/bin

Re: [dpdk-dev] [PATCH] Fix bash path in shebangs

2017-07-31 Thread Bruce Richardson
On Mon, Jul 31, 2017 at 09:11:11AM -0600, alan somers wrote: > On Fri, Jul 28, 2017 at 3:28 AM, Bruce Richardson > wrote: > > On Thu, Jul 27, 2017 at 02:41:46PM -0600, asom...@gmail.com wrote: > >> From: Alan Somers > >> > >> "/bin/bash" is a Linuxism. "/usr/bin/env bash" is portable. > >> > >>

Re: [dpdk-dev] [PATCH] Fix bash path in shebangs

2017-07-31 Thread alan somers
On Fri, Jul 28, 2017 at 3:28 AM, Bruce Richardson wrote: > On Thu, Jul 27, 2017 at 02:41:46PM -0600, asom...@gmail.com wrote: >> From: Alan Somers >> >> "/bin/bash" is a Linuxism. "/usr/bin/env bash" is portable. >> >> Signed-off-by: Alan Somers >> --- >> examples/performance-thread/l3fwd-thre

Re: [dpdk-dev] [PATCH] Fix bash path in shebangs

2017-07-28 Thread Bruce Richardson
On Thu, Jul 27, 2017 at 02:41:46PM -0600, asom...@gmail.com wrote: > From: Alan Somers > > "/bin/bash" is a Linuxism. "/usr/bin/env bash" is portable. > > Signed-off-by: Alan Somers > --- > examples/performance-thread/l3fwd-thread/test.sh | 2 +- > usertools/dpdk-setup.sh

[dpdk-dev] [PATCH] Fix bash path in shebangs

2017-07-27 Thread asomers
From: Alan Somers "/bin/bash" is a Linuxism. "/usr/bin/env bash" is portable. Signed-off-by: Alan Somers --- examples/performance-thread/l3fwd-thread/test.sh | 2 +- usertools/dpdk-setup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example

[dpdk-dev] [PATCH] Fix bash path in shebangs

2017-07-27 Thread asomers
From: Alan Somers "/bin/bash" is a Linuxism. "/usr/bin/env bash" is portable. Signed-off-by Alan Somers --- examples/performance-thread/l3fwd-thread/test.sh | 2 +- usertools/dpdk-setup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples