gst-indent: Add support for gindent as executable name

gst-indent used to support gnuindent and indent as executable names.
However, on OSX one can "brew install gnu-indent" and then the
executable name will be gindent. Added support for that.

https://bugzilla.gnome.org/show_bug.cgi?id=750351
This commit is contained in:
Vivia Nikolaidou 2015-06-03 19:04:15 +03:00 committed by Sebastian Dröge
parent c508ee27a1
commit 957a81eef9

View file

@ -1,16 +1,17 @@
#!/bin/sh #!/bin/sh
version=`gnuindent --version 2>/dev/null` for execname in gnuindent gindent indent; do
if test "x$version" = "x"; then version=`$execname --version 2>/dev/null`
version=`indent --version 2>/dev/null` if test "x$version" != "x"; then
if test "x$version" = "x"; then INDENT=$execname
echo "GStreamer git pre-commit hook:" break
echo "Did not find GNU indent, please install it before continuing."
exit 1
fi fi
INDENT=indent done
else
INDENT=gnuindent if test -z $INDENT; then
echo "GStreamer git pre-commit hook:"
echo "Did not find GNU indent, please install it before continuing."
exit 1
fi fi
case `$INDENT --version` in case `$INDENT --version` in