From: Mark Wooding Date: Sun, 9 Aug 2020 12:16:53 +0000 (+0100) Subject: m4/mdw-dir-texmf.m4: Nest and indent `mdw_DEFINE_PATHS' properly. X-Git-Url: https://git.distorted.org.uk/~mdw/runlisp/commitdiff_plain/195ca0c9e52e2c10b7fa0db5981046eea2cde83d m4/mdw-dir-texmf.m4: Nest and indent `mdw_DEFINE_PATHS' properly. Not sure why this enclosed the `AC_MSG_RESULT' before. Oh, well. --- diff --git a/m4/mdw-dir-texmf.m4 b/m4/mdw-dir-texmf.m4 index 9406273..ff9314c 100644 --- a/m4/mdw-dir-texmf.m4 +++ b/m4/mdw-dir-texmf.m4 @@ -58,16 +58,16 @@ case $texmfdir in guess) AC_MSG_CHECKING([where to put installed TeX files]) mdw_DEFINE_PATHS([ - texmfdir='${datadir}/texmf' - for d in \ - '${datadir}/texmf' '${prefix}/lib/texmf' \ - '${prefix}/texmf' '${libdir}/lib/texmf'; do - if test -d "mdw_PATH([$d])"; then - texmfdir=$d - break - fi - done - AC_MSG_RESULT([$texmfdir])]) + texmfdir='${datadir}/texmf' + for d in \ + '${datadir}/texmf' '${prefix}/lib/texmf' \ + '${prefix}/texmf' '${libdir}/lib/texmf'; do + if test -d "mdw_PATH([$d])"; then + texmfdir=$d + break + fi + done]) + AC_MSG_RESULT([$texmfdir]) ;; esac AC_SUBST(texmfdir)])