mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 00:14:44 +01: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>
11 lines
296 B
Text
11 lines
296 B
Text
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
|
|
])
|