Re: [PATCH] Lindent: Handle missing indent gracefully

From: Joe Perches
Date: Fri Jul 10 2015 - 07:51:56 EST


On Fri, 2015-07-10 at 13:47 +0200, Jean Delvare wrote:
> If indent is not found, bail out immediately instead of spitting
> random shell script error messages.

OK, but can't we just delete Lindent instead?

> --- linux-4.2-rc0.orig/scripts/Lindent 2015-06-22 07:05:43.000000000 +0200
> +++ linux-4.2-rc0/scripts/Lindent 2015-07-10 13:45:56.864031472 +0200
> @@ -1,6 +1,9 @@
> #!/bin/sh
> PARAM="-npro -kr -i8 -ts8 -sob -l80 -ss -ncs -cp1"
> RES=`indent --version`
> +if [ "$RES" = "" ]; then
> + exit 1
> +fi
> V1=`echo $RES | cut -d' ' -f3 | cut -d'.' -f1`
> V2=`echo $RES | cut -d' ' -f3 | cut -d'.' -f2`
> V3=`echo $RES | cut -d' ' -f3 | cut -d'.' -f3`
>



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/