On Mon, Jul 21, 2008 at 9:16 PM, Ralf Wildenhues <[EMAIL PROTECTED]> wrote:
> * Bernd Jendrissek wrote on Mon, Jul 21, 2008 at 01:31:46PM CEST:
>> check-local: check
>
> That looks broken. check will cause the check-am target to run
> 'make check-local' which may then call 'make check' again. You
> can run into an endless loop this way, and it is not parallel safe
> either. I also think that you rely on undocumented features here.
Yikes, you're right, it does look broken.
Actually, I lie (*). What I now have is this:
check: check-setup
.PHONY: check-setup
<insert database setup here>
Seems to be working the way I want it now.
(*) Sorry, my posts to the list and the reality in my working
directory are a bit out of sync!