Re: [PATCH 1/1] scripts: bin2png.sh: Fix POSIX shell compliance

2017-02-22 Thread Laurent Pinchart
Hi Kieran, Thank you for the patch. On Wednesday 22 Feb 2017 15:52:43 Kieran Bingham wrote: > From: Kieran Bingham > > The string manipulations of the form ${VAR/search/replace} are not posix > compliant. Use string deletion, and append instead. > > Signed-off-by: Kieran Bingham Reviewed-by,

[PATCH 1/1] scripts: bin2png.sh: Fix POSIX shell compliance

2017-02-22 Thread Kieran Bingham
From: Kieran Bingham The string manipulations of the form ${VAR/search/replace} are not posix compliant. Use string deletion, and append instead. Signed-off-by: Kieran Bingham --- scripts/bin2png.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bin2png.sh b/sc