diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-04-05 09:30:24 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-04-05 09:30:24 +0000 |
commit | 22de92d482148bc13bae2597fc718ce50c54b419 (patch) | |
tree | 01cad8c63ffac9cea2682cc875a11c19e3466a81 | |
parent | 47db65ad999dc86c2eee8b1ea8c9066a5accae10 (diff) | |
download | mandoc-22de92d482148bc13bae2597fc718ce50c54b419.tar.gz |
allow using an alternate mandoc binary
-rw-r--r-- | gmdiff | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -40,7 +40,8 @@ while [ -n "$1" ]; do shift echo " ========== $file ========== " tbl $file | $EQN | $ROFF -mandoc 2> /tmp/roff.err > /tmp/roff.out - mandoc -Ios='OpenBSD ports' $MOPT $file 2> /tmp/mandoc.err > /tmp/mandoc.out + ${MANDOC:=mandoc} -Ios='OpenBSD ports' $MOPT $file \ + 2> /tmp/mandoc.err > /tmp/mandoc.out for i in roff mandoc; do [[ -s /tmp/$i.err ]] && echo "$i errors:" && cat /tmp/$i.err done |