contrib/ngindent: detect "gindent" as GNU indent

This commit is contained in:
Alexander Barton 2011-08-01 23:39:29 +02:00
parent 95f0e4033c
commit da897a2a14
1 changed files with 1 additions and 0 deletions

View File

@ -4,6 +4,7 @@ INDENTARGS="-kr -i8 -ts8 -l80 -c3 -cd41 -ss -ncs -psl"
# check if indent(1) is available
type indent >/dev/null 2>&1 && INDENT="indent"
type gindent >/dev/null 2>&1 && INDENT="gindent"
type gnuindent >/dev/null 2>&1 && INDENT="gnuindent"
if [ -z "$INDENT" ]; then