1
0
Fork 0
man-db/m4/man-arg-override-dir.m4
Daniel Baumann 1fa764a8d3
Adding upstream version 2.13.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 08:13:55 +02:00

20 lines
657 B
Text

# man-arg-override-dir.m4 serial 3
dnl MAN_ARG_OVERRIDE_DIR
dnl Add an --enable-override-dir option.
AC_DEFUN([MAN_ARG_OVERRIDE_DIR],
[
AC_ARG_WITH([override-dir],
[AS_HELP_STRING([--with-override-dir=OVERRIDE], [use OVERRIDE as relative override dir inside the man path - the first directory to be searched when looking for man pages])],
[if test "$withval" = "yes" || test "$withval" = "no"
then
AC_MSG_ERROR([--with-override-dir requires an argument])
else
override_dir=$withval
fi],
[: ${override_dir=""}])
AC_SUBST([override_dir])
AC_DEFINE_UNQUOTED(
[OVERRIDE_DIR], ["$override_dir"],
[Relative override directory inside man path.])
])