> 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.
Nice, but... > Would that do what you want? no. The test for perl should be at configure time, not runtime. Werner