diff options
author | Richard Stallman <rms@gnu.org> | 1993-05-07 21:41:24 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-05-07 21:41:24 +0000 |
commit | 1e558d3581b65f3e6b67f239420a99eb0cf95b99 (patch) | |
tree | 2c356bc660ce57cc9f6f66a107539b8f7e6f6cda | |
parent | a857e01bf2460bb0a55cef4e55c5374df7165a55 (diff) | |
download | gcc-1e558d3581b65f3e6b67f239420a99eb0cf95b99.zip gcc-1e558d3581b65f3e6b67f239420a99eb0cf95b99.tar.gz gcc-1e558d3581b65f3e6b67f239420a99eb0cf95b99.tar.bz2 |
(float.h-nat): Use tmp-float.h as intermediate file.
From-SVN: r4381
-rw-r--r-- | gcc/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index b0abba2..5667b92 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -527,7 +527,8 @@ gfloat.h: $(FLOAT_H) # Create float.h source for the native machine. float.h-nat: enquire - -./enquire -f > float.h-nat + -./enquire -f > tmp-float.h + mv tmp-float.h float.h-nat # Create a dummy float.h source for a cross-compiler. float.h-cross: |