Subject: Re: PR/34036 CVS commit: pkgsrc/mk/fetch
To: None <pkg-manager@netbsd.org, gnats-admin@netbsd.org,>
From: Stuart Shelton <srcshelton@gmail.com>
List: pkgsrc-bugs
Date: 07/20/2006 14:50:03
The following reply was made to PR pkg/34036; it has been noted by GNATS.

From: "Stuart Shelton" <srcshelton@gmail.com>
To: gnats-bugs@netbsd.org
Cc: pkg-manager@netbsd.org, gnats-admin@netbsd.org,
	pkgsrc-bugs@netbsd.org
Subject: Re: PR/34036 CVS commit: pkgsrc/mk/fetch
Date: Thu, 20 Jul 2006 15:45:15 +0100

 >  OK, so you have a different IRIX version that Jan. I could replicate the
 >  problem there.
 
 :(
 
 I'm running IRIX 6.5.29 (IRIX64):
 
 $ cat test.sh
 #!/bin/sh
 
 set -e
 
 testf () {
         test -f /nonexistent || return 1
         return 0
 }
 
 if testf; then
         exit 1
 fi
 exit 0
 $ ./test.sh ; echo $?
 0
 
 ... if I'm understanding correctly then that should be a "1", yes?
 
 P.S. Please see my other mail about "fetch" apparently not being
 called.  Very strange...