On Fri, 12 Apr 2013 21:48:49 +0200 (CEST) "Bernd Warken" <[email protected]> wrote:
> It would make sense to install this Perl error handling at a single
> space somewhere in the configure place.
>
> Has anyone an idea how this could be made or where one can learn how
> to do this.
have_perl:
@command -v perl || ( echo "need perl" >&2; exit 1 )
Add that to the Makefile and make have_perl a prerequisite for some
early target.
Would that do what you want?
--jkl
