You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Marc Slemko <ma...@znep.com> on 1997/01/25 03:48:13 UTC

PrintPath fails on IRIX 5.3

On IRIX 5.3, PrintPath always finds whatever you ask it for because it
always exits with a 0 exit status.  This appears to be because of:
	
	trap 'rm -f $testfile; exit' 0 1 2 3 15

The shell appears to exit with an exit status that is based on the exit
status returned from the trap.  Grr.  

Fix?  Ermm... perhaps we will need to just get rid of the trap?  Sigh.