From 998812aceb28ef8608aace23183e68962e4a8553 Mon Sep 17 00:00:00 2001 From: Torbjorn Granlund Date: Mon, 4 Jan 1993 19:05:01 +0000 Subject: [PATCH] (install-common-headers): Pipe grep output to /dev/null. From-SVN: r3087 --- gcc/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 80fd6f9118d..dcd55d498ac 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1585,7 +1585,7 @@ install-common-headers: install-dir $(USER_H) gvarargs.h gstdarg.h gstddef.h gsy # but supposedly the ! operator is missing in sh on some systems. if [ -f $(assertdir)/assert.h ]; \ then \ - if grep "__eprintf" $(assertdir)/assert.h; \ + if grep "__eprintf" $(assertdir)/assert.h >/dev/null; \ then \ rm -f $(assertdir)/assert.h; \ $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \ -- 2.30.2