On Fri Jun 23 00:57:54 2006, guest wrote:
Show quoted text> make test fails with the following error:
>
> make: don't know how to make blib/test/Authen/PAAS.pm.tstamp. Stop.
>
> I get the same test failure with Config::Record.
It looks like your makefile is not being generated properly because
there is a rule defined:
blib/test/%.pm.tstamp: lib/%.pm
@echo -n "Checking $<: "
@perl -I blib/lib -c $<
@podchecker $<
@mkdir -p `dirname $@`
@touch $@
which should allow blib/test/Authen/PAAS.pm.tstamp to be generated from
lib/Authen/PAAS.pm. Could you double check you have the file
'lib/Authen/PAAS.pm' and upload the generated 'Makefile', along with the
output of 'make --debug' (or equivalant debug output from your 'make' tool)