diff options
author | Richard Stallman <rms@gnu.org> | 1993-01-25 05:08:13 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-01-25 05:08:13 +0000 |
commit | 3f7531dbac9de32a7297f07f3a3aa6136cc72c48 (patch) | |
tree | 8bcdd132bc928776c90556399121f7c9120c3faa | |
parent | 82bde8543bc70f5cec5fe54150f4907d8445b8c9 (diff) | |
download | gcc-3f7531dbac9de32a7297f07f3a3aa6136cc72c48.zip gcc-3f7531dbac9de32a7297f07f3a3aa6136cc72c48.tar.gz gcc-3f7531dbac9de32a7297f07f3a3aa6136cc72c48.tar.bz2 |
(install-float-h-cross): Don't ignore error when running enquire.
From-SVN: r3323
-rw-r--r-- | gcc/Makefile.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 59e95b0..68e9fa6 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1446,10 +1446,9 @@ install-cross-rest: install-float-h-cross # Install float.h for cross compiler. # Run this on the target machine! install-float-h-cross: -# I don't see what this line is for. -# If you see what good it does, please tell me. -- rms. - if [ -f enquire ] ; then true; else false; fi - -./enquire -f > $(tmpdir)/float.h +# if [ -f enquire ] ; then true; else false; fi +# Note: don't use -. We should fail right away if enquire was not made. + ./enquire -f > $(tmpdir)/float.h -rm -f $(libsubdir)/include/float.h $(INSTALL_DATA) $(tmpdir)/float.h $(libsubdir)/include/float.h -rm -f $(tmpdir)/float.h |