(Braces parsing): Use grep, not fgrep, as POSIX 1003.1-2001 has
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Oct 2002 04:50:45 +0000 (04:50 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Oct 2002 04:50:45 +0000 (04:50 +0000)
removed fgrep.

tests/regression.at

index 13d3ab9..e7da21b 100644 (file)
@@ -74,7 +74,7 @@ exp: { tests = {{{{{{{{{{}}}}}}}}}}; };
 
 AT_CHECK([bison -v input.y -o input.c])
 
-AT_CHECK([fgrep 'tests = {{{{{{{{{{}}}}}}}}}};' input.c], 0, [ignore])
+AT_CHECK([grep 'tests = {{{{{{{{{{}}}}}}}}}};' input.c], 0, [ignore])
 
 AT_CLEANUP