<div class="gmail_quote">On Sat, Dec 31, 2011 at 9:27 PM, Paul Bowyer <span dir="ltr"><<a href="mailto:pbowyer@olynet.com">pbowyer@olynet.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div id=":26f">The "make check" operation looked like it completed properly in the Konsole window, so just to be certain everything was correct, I issued a "make recheck" command from within the Konsole window. That command began an infinite loop in the Konsole window that I could not break out of because there was so much hard disk activity. It was even beginning to mess up the Konqueror window, which was still open. I used the reset button on my computer to halt the system and reboot so I could see if there was any permanent damage, but my system rebooted without problems.<br>

</div></blockquote></div><br>Sorry for the inconvenience. I have realized what made the Makefiles fragile against errors. It is a simple bug: using<div>   cd tests; $(MAKE)</div><div>instead of the more appropriate</div>
<div>
   cd tests && $(MAKE)</div><div>In the first version, when the directory does not exist, the makefile invokes itself again, leading to infinite recursion.</div><div><br></div><div>Before you suggest it, we cannot use $(MAKE) -C tests. The problem is that BSD make does not support that option</div>

<div><div><br></div><div>Juanjo</div><div><br></div>-- <br>Instituto de Física Fundamental, CSIC<br>c/ Serrano, 113b, Madrid 28006 (Spain) <br><a href="http://juanjose.garciaripoll.googlepages.com" target="_blank">http://juanjose.garciaripoll.googlepages.com</a><br>


</div>