mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-22 01:57:43 +00:00
Point to the site for Perl the language and not Perl news. Signed-off-by: Tyler Hicks <tyhicks@canonical.com> Acked-by: Steve Beattie <steve@nxnw.org> Acked-by: Seth Arnold <seth.arnold@canonical.com>
12 lines
275 B
Plaintext
12 lines
275 B
Plaintext
AC_DEFUN([PROG_POD2MAN],[
|
|
AC_CHECK_PROG(POD2MAN,pod2man,pod2man,no)
|
|
if test "$POD2MAN" = "no"; then
|
|
AC_MSG_ERROR([
|
|
The pod2man program was not found in the default path. pod2man is part of
|
|
Perl, which can be retrieved from:
|
|
|
|
https://www.perl.org
|
|
])
|
|
fi
|
|
])
|