From: Mark Wooding Date: Sun, 9 Aug 2020 12:04:36 +0000 (+0100) Subject: m4/mdw-manext.m4: Don't hardcode the manpage extension to `mLib'. X-Git-Url: https://git.distorted.org.uk/~mdw/runlisp/commitdiff_plain/d12f6414c09ddbb84a6a605a08f4c14cb2a633da m4/mdw-manext.m4: Don't hardcode the manpage extension to `mLib'. Obviously this isn't used as widely as it ought to be! --- diff --git a/m4/mdw-manext.m4 b/m4/mdw-manext.m4 index 636a652..df71dbc 100644 --- a/m4/mdw-manext.m4 +++ b/m4/mdw-manext.m4 @@ -2,7 +2,7 @@ dnl -*-autoconf-*- ### SYNOPSIS ### -### mdw_MANEXT +### mdw_MANEXT(DFLT) ### ### DESCRIPTION ### @@ -47,5 +47,5 @@ AC_DEFUN([mdw_MANEXT], [ AC_ARG_WITH([man-ext], [AS_HELP_STRING([--with-man-ext=EXT], [give manpages the EXT extension (e.g., foo.3EXT)])], -[manext=$withval], [manext=mLib]) +[manext=$withval], [manext="$1"]) AC_SUBST(manext)])