diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-08-31 13:38:04 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-08-31 13:38:04 -0700 |
commit | d7a58f93b13ab7371f51659787ebfa28f32d164b (patch) | |
tree | f7f2ed7d44045706bf4c045d9c05ce179587bdf7 | |
parent | a45035b6ed1dacd448413747b09991e4c58e5e9d (diff) | |
download | gcc-d7a58f93b13ab7371f51659787ebfa28f32d164b.zip gcc-d7a58f93b13ab7371f51659787ebfa28f32d164b.tar.gz gcc-d7a58f93b13ab7371f51659787ebfa28f32d164b.tar.bz2 |
(xsys-protos.h): Use fixtmp.c not tmp.c, and delete
it afterwards.
From-SVN: r5233
-rw-r--r-- | gcc/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index fd308d1..54aaf57 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1427,10 +1427,11 @@ gen-protos: gen-protos.o scan.o ${HOST_CC} -o gen-protos gen-protos.o scan.o xsys-protos.h: $(srcdir)/sys-protos.h deduced.h gen-protos Makefile - cat deduced.h $(srcdir)/sys-protos.h >tmp.c - $(GCC_FOR_TARGET) tmp.c -E \ + cat deduced.h $(srcdir)/sys-protos.h > fixtmp.c + $(GCC_FOR_TARGET) fixtmp.c -E \ | sed -e 's/ / /g' -e 's/ *(/ (/g' -e 's/ [ ]*/ /g' -e 's/( )/()/' \ | ./gen-protos >xsys-protos.h + rm -rf fixtmp.c scan-decls: scan-decls.o scan.o $(HOST_CC) -o scan-decls scan-decls.o scan.o |