summaryrefslogtreecommitdiffstats
path: root/c/src/lib/wrapup/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-28 16:10:05 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-28 16:10:05 +0000
commit8f2cb41c020efe15c01ed3637853498dc83d3c61 (patch)
treef9a21f2050e32e7c0fc387a5a85f81852e788f06 /c/src/lib/wrapup/Makefile.in
parentAlignment corrected per Eric Norum's suggestion. (diff)
downloadrtems-8f2cb41c020efe15c01ed3637853498dc83d3c61.tar.bz2
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.
Diffstat (limited to 'c/src/lib/wrapup/Makefile.in')
-rw-r--r--c/src/lib/wrapup/Makefile.in2
1 files changed, 1 insertions, 1 deletions
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" >> $@;\