diff options
author | Richard Stallman <rms@gnu.org> | 1992-12-20 00:07:38 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-12-20 00:07:38 +0000 |
commit | 3055b3a18a93323015f2d36d288a91990cb8549e (patch) | |
tree | dab89a2f84e9fe4b43fd660335bba1d57d435978 | |
parent | 08408c5c21c8ddca05040e1883a6ff3467eff730 (diff) | |
download | gcc-3055b3a18a93323015f2d36d288a91990cb8549e.zip gcc-3055b3a18a93323015f2d36d288a91990cb8549e.tar.gz gcc-3055b3a18a93323015f2d36d288a91990cb8549e.tar.bz2 |
(all.cross): Add `specs' as dep.
From-SVN: r2898
-rw-r--r-- | gcc/Makefile.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 0e43d02..3baa75f 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -429,7 +429,7 @@ Makefile: $(srcdir)/Makefile.in $(srcdir)/configure $(srcdir)/version.c \ all.internal: start.encap rest.encap # This is what to compile if making a cross-compiler. -all.cross: native gcc-cross libgcc.a cross-test $(EXTRA_PARTS) +all.cross: native gcc-cross specs libgcc.a cross-test $(EXTRA_PARTS) # This is what to compile if making gcc with a cross-compiler. all.build: native xgcc $(EXTRA_PARTS) # This is what must be made before installing GCC and converting libraries. @@ -1474,8 +1474,6 @@ install-common: native install-dir xgcc $(EXTRA_PARTS) else true; fi; \ done # Don't mess with specs if it doesn't exist yet. -# We can't make it a dependency because with a cross compiler -# you have to make specs on the target machine or not at all. -if [ -f specs ] ; then \ rm -f $(libsubdir)/specs; \ $(INSTALL_DATA) specs $(libsubdir)/specs; \ |