mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-22 01:57:43 +00:00
Fail the configure stage if podchecker is not available since man page generation always happens. Signed-off-by: Tyler Hicks <tyhicks@canonical.com> Acked-by: Steve Beattie <steve@nxnw.org>
12 lines
296 B
Plaintext
12 lines
296 B
Plaintext
AC_DEFUN([PROG_PODCHECKER],[
|
|
AC_CHECK_PROG(PODCHECKER,podchecker,podchecker,no)
|
|
if test "$PODCHECKER" = "no"; then
|
|
AC_MSG_ERROR([
|
|
The podchecker program was not found in the default path. podchecker is part of
|
|
Perl, which can be retrieved from:
|
|
|
|
https://www.perl.org
|
|
])
|
|
fi
|
|
])
|