blob: 3cf666aa1a0cc76a17013efa43c8262ebf673ea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# man-arg-snapdir.m4 serial 1
dnl MAN_ARG_SNAPDIR
dnl Add a --with-snapdir option.
AC_DEFUN([MAN_ARG_SNAPDIR],
[
AC_ARG_WITH([snapdir],
[AS_HELP_STRING([--with-snapdir=DIR], [use snap system directory DIR [DIR=/snap]])],
[if test "$withval" = "yes" || test "$withval" = "no"
then
AC_MSG_ERROR([--with-snapdir requires an argument])
else
snapdir="$withval"
fi],
[: ${snapdir=/snap}])
AC_SUBST([snapdir])
])
|