blob: 6a94ec3878cf1c68182e3cac88ef164c191ed6d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# man-arg-override-dir.m4 serial 1
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])
])
|