From 8f2cb41c020efe15c01ed3637853498dc83d3c61 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 28 May 1999 16:10:05 +0000 Subject: Use fgrep instead of grep to avoid treating filenames as regular expressions. grep found debugio.o when looking for debug.o and said there was a filename conflict incorrectly. --- c/src/lib/wrapup/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c/src/lib/wrapup') diff --git a/c/src/lib/wrapup/Makefile.in b/c/src/lib/wrapup/Makefile.in index e5e054ad08..3fcebf436a 100644 --- a/c/src/lib/wrapup/Makefile.in +++ b/c/src/lib/wrapup/Makefile.in @@ -55,7 +55,7 @@ $(ARCH)/check:: $(SRCS) *.a) \ ( list=`$(AR) t $$f`;\ for i in $$list; do \ - if grep " $$i" $@; then \ + if fgrep " $$i" $@; then \ echo "ERROR -- $$i in multiple files"; exit 1; \ fi;\ echo " $$i" >> $@;\ -- cgit v1.2.3