Commit a5dfc94c authored by Alvaro Herrera's avatar Alvaro Herrera

Use $INDENT instead of `which` to find the indent binary

Per discussion after my commit o yesterday.
parent bc76695c
......@@ -21,7 +21,10 @@ fi
TYPEDEFS="$1"
shift
INDENT=`which indent`
if [ -z "$INDENT" ]
then
INDENT=indent
fi
trap "rm -f /tmp/$$ /tmp/$$a" 0 1 2 3 15
entab </dev/null >/dev/null
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment