From dfa211bad202d14378b7a6780936e0a77ee0b49c Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Wed, 8 Dec 2004 18:54:10 +0000 Subject: [PATCH] * fix syntax for anding. must either use test EXP && test EXP (slightly more portable) or test EXP -a EXP This commit was SVN r3750. --- autogen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 7b945b0e54..5621a248d9 100755 --- a/autogen.sh +++ b/autogen.sh @@ -460,8 +460,8 @@ EOF *** `pwd` EOF - elif test -f .ompi_ignore -a \ - test -s .ompi_unignore -a \ + elif test -f .ompi_ignore && \ + test -s .ompi_unignore && \ test -z "`grep $USER .ompi_unignore`" ; then # If we have a non-empty .ompi_unignore and our username