m4/mdw-dir-texmf.m4, m4/mdw-manext.m4: Use `AS_HELP_STRING'.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 9 Aug 2020 12:02:32 +0000 (13:02 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 9 Aug 2020 12:27:48 +0000 (13:27 +0100)
I think this didn't exist when I wrote these macros.

m4/mdw-dir-texmf.m4
m4/mdw-manext.m4

index e2bfd45..2d12db8 100644 (file)
@@ -49,9 +49,10 @@ dnl -*-autoconf-*-
 ###   exception to the GPL to apply to your modified version as well.
 
 # serial 1
-AC_DEFUN([mdw_DIR_TEXMF], [
+AC_DEFUN([mdw_DIR_TEXMF],[
 AC_ARG_WITH([texmfdir],
-[  --with-texmfdir=DIR     set the TeX install directory to DIR],
+[AS_HELP_STRING([--with-texmfdir=DIR],
+               [set the TeX install directory to DIR])],
 [texmfdir=$withval],
 [AC_MSG_CHECKING([where to put installed TeX files])
 mdw_DEFINE_PATHS([
index 0d5b90d..636a652 100644 (file)
@@ -45,6 +45,7 @@ dnl -*-autoconf-*-
 # serial 1
 AC_DEFUN([mdw_MANEXT], [
 AC_ARG_WITH([man-ext],
-[  --with-man-ext=EXT      give manpages the EXT extension (e.g., foo.3EXT)],
+[AS_HELP_STRING([--with-man-ext=EXT],
+               [give manpages the EXT extension (e.g., foo.3EXT)])],
 [manext=$withval], [manext=mLib])
 AC_SUBST(manext)])