Karl Berry wrote:
> I'm not sure it's best to add that additional level of
> infrastructure/indirection to Hello.
Yes, if it can be done through the one-liner by Ralf and my other
configure.ac patch today, that is simpler.
> Also, why not adding the help2man to build-aux?
>
> Sounds good to me, but will Automake find it there?
If you include help2man in build-aux/, you need also to change configure.ac:
replace
AM_MISSING_PROG(HELP2MAN, help2man)
with
ac_aux_dir_abs=`cd $ac_aux_dir && pwd`
AC_PATH_PROG(PERL, perl, $ac_aux_dir_abs/missing perl)
(Maybe AM_MISSING_PROG(PERL, perl) does the same? I didn't try it.)
Bruno