]> git.saurik.com Git - bison.git/commitdiff
(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 13d3ab9e0b233bec6832454effe6c7d3ed1d981b..e7da21b804c964d5b6c6b63a305a6e87f18d8cfb 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