Module: ngircd.git Branch: master Commit: eba53f652ce8e0e7600b337628883d17fc3af2f2 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=eba53...
Author: Alexander Barton alex@barton.de Date: Thu Sep 27 00:19:31 2012 +0200
Fix getpid.sh to work on Apple A/UX again
---
src/testsuite/getpid.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/testsuite/getpid.sh b/src/testsuite/getpid.sh index 19ced76..96ab474 100755 --- a/src/testsuite/getpid.sh +++ b/src/testsuite/getpid.sh @@ -10,7 +10,7 @@ UNAME=`uname` if [ $UNAME = "FreeBSD" ]; then PS_FLAGS="-a"; PS_PIDCOL="1"; HEAD_FLAGS="-n 1" elif [ $UNAME = "A/UX" ]; then - PS_FLAGS="-ae"; PS_PIDCOL="1"; HEAD_FLAGS="-1" + PS_FLAGS="-af"; PS_PIDCOL="2"; HEAD_FLAGS="-1" elif [ $UNAME = "GNU" ]; then PS_FLAGS="-ax"; PS_PIDCOL="2"; HEAD_FLAGS="-n 1" elif [ $UNAME = "Linux" ]; then