apparmor/libraries/libapparmor/m4/ac_pod2man.m4
Tyler Hicks 3c7621b511 libapparmor: Point to the correct site for downloading Perl
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>
2014-11-17 21:19:15 -06:00

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
])