25.04.2017 16:18, Kamil Rytarowski wrote: > Appease pkgsrc and use portable shell variable comparison. > This switches "==" to "=". It should not be a functional change.
Applied to -trivial, thanks! /mjt > Signed-off-by: Kamil Rytarowski <n...@gmx.com> > --- > scripts/qemu-binfmt-conf.sh | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/scripts/qemu-binfmt-conf.sh b/scripts/qemu-binfmt-conf.sh > index 0f1aa63872..8afc3eb5bb 100755 > --- a/scripts/qemu-binfmt-conf.sh > +++ b/scripts/qemu-binfmt-conf.sh > @@ -284,12 +284,12 @@ while true ; do > shift > # check given cpu is in the supported CPU list > for cpu in ${qemu_target_list} ; do > - if [ "$cpu" == "$1" ] ; then > + if [ "$cpu" = "$1" ] ; then > break > fi > done > > - if [ "$cpu" == "$1" ] ; then > + if [ "$cpu" = "$1" ] ; then > qemu_target_list="$1" > else > echo "ERROR: unknown CPU \"$1\"" 1>&2 >