mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01: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>
11 lines
275 B
Text
11 lines
275 B
Text
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
|
|
])
|