diff options
author | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-19 23:18:21 +0000 |
---|---|---|
committer | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-19 23:18:21 +0000 |
commit | c313731b2fbaa7e3b51b62ee0af754234940e29d (patch) | |
tree | dd597dbc825c9a8927e40c806b6641d7a942e538 /gcc | |
parent | 144e89a09874f912c7a5e8d4895facd616a65921 (diff) | |
download | ppe42-gcc-c313731b2fbaa7e3b51b62ee0af754234940e29d.tar.gz ppe42-gcc-c313731b2fbaa7e3b51b62ee0af754234940e29d.zip |
open stdin for those building with a closed one.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42326 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 1 | ||||
-rw-r--r-- | gcc/fixinc/Makefile.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5998040f16a..c55d6840ea4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,7 @@ 2001-05-19 Bruce Korb <bkorb@gnu.org> * fixinc/genfixes: no need for two warnings + * fixinc/Makefile.in: open stdin for those building with a closed one. 2001-05-19 Mark Mitchell <mark@codesourcery.com> diff --git a/gcc/fixinc/Makefile.in b/gcc/fixinc/Makefile.in index eb0fc20a7a4..d0dfb0c2f4b 100644 --- a/gcc/fixinc/Makefile.in +++ b/gcc/fixinc/Makefile.in @@ -122,7 +122,7 @@ maintainer-clean : clean # We still copy the script because we still have alternative scripts. # install-bin : $(TARGETS) - ./fixincl -v + ./fixincl -v < /dev/null @if [ -f ../fixinc.sh ] ; then rm -f ../fixinc.sh || \ mv -f ../fixinc.sh ../fixinc.sh.$$ || exit 1 ; else : ; fi @cp $(srcdir)/fixincl.sh ../fixinc.sh |