[PATCH] xen/build: fix xen/tools/binfile

2020-05-29 Thread Juergen Gross
xen/tools/binfile contains a bash specific command (let). This leads to build failures on systems not using bash as /bin/sh. Replace "let SHIFT=$OPTIND-1" by "SHIFT=$((OPTIND-1))". Signed-off-by: Juergen Gross --- xen/tools/binfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --g

Re: [PATCH] xen/build: fix xen/tools/binfile

2020-05-29 Thread Andrew Cooper
On 29/05/2020 19:28, Juergen Gross wrote: > xen/tools/binfile contains a bash specific command (let). This leads > to build failures on systems not using bash as /bin/sh. > > Replace "let SHIFT=$OPTIND-1" by "SHIFT=$((OPTIND-1))". > > Signed-off-by: Juergen Gross A/T-by and pushed.  Thanks for th