Update of /cvsroot/libfunutil/libfunutil/toc/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv12638
Modified Files:
awk.sh
Log Message:
added check for nawk
Index: awk.sh
===================================================================
RCS file: /cvsroot/libfunutil/libfunutil/toc/tests/awk.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- awk.sh 26 Aug 2003 08:31:28 -0000 1.2
+++ awk.sh 31 Aug 2003 00:42:50 -0000 1.3
@@ -1,4 +1,6 @@
# awk?
-toc_find_failok awk || toc_find_failok gawk || return
+err=0
+toc_find_failok awk || toc_find_failok gawk || toc_find_failok nawk || err=1
toc_add_make AWK=$TOC_FIND_RESULT
+return $err
|