Re: [OE-core] [PATCH] lsbtest: fix comparison bashism

2014-03-31 Thread Stanacar, StefanX
On Sun, 2014-03-30 at 18:55 -0400, Trevor Woerner wrote: > On 03/11/14 11:40, Stefan Stanacar wrote: > > == is a bashism use = instead. > > But the first line of this script is: > #/bin/bash > > Shouldn't a bash script be allowed to have bash-isms??! I was referring to the recipe which should

Re: [OE-core] [PATCH] lsbtest: fix comparison bashism

2014-03-30 Thread Trevor Woerner
On 03/11/14 11:40, Stefan Stanacar wrote: > == is a bashism use = instead. But the first line of this script is: #/bin/bash Shouldn't a bash script be allowed to have bash-isms??! -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedd

[OE-core] [PATCH] lsbtest: fix comparison bashism

2014-03-11 Thread Stefan Stanacar
== is a bashism use = instead. Signed-off-by: Stefan Stanacar --- meta/recipes-extended/lsb/lsbtest/LSB_Test.sh | 4 ++-- meta/recipes-extended/lsb/lsbtest_1.0.bb | 8 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/meta/recipes-extended/lsb/lsbtest/LSB_Test.sh b/me