diff options
author | Torbjorn Granlund <tege@gnu.org> | 1993-01-04 19:05:01 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1993-01-04 19:05:01 +0000 |
commit | 998812aceb28ef8608aace23183e68962e4a8553 (patch) | |
tree | d90167871e20af601710b87537cf5df78f323704 /gcc | |
parent | a7d06674e145878c8ee04dd36e8c362a0106e368 (diff) | |
download | gcc-998812aceb28ef8608aace23183e68962e4a8553.zip gcc-998812aceb28ef8608aace23183e68962e4a8553.tar.gz gcc-998812aceb28ef8608aace23183e68962e4a8553.tar.bz2 |
(install-common-headers): Pipe grep output to /dev/null.
From-SVN: r3087
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 80fd6f9..dcd55d4 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; \ |