# --- T2-COPYRIGHT-NOTE-BEGIN --- # This copyright note is auto-generated by ./scripts/Create-CopyPatch. # # T2 SDE: package/.../gcc/no-specs.patch # Copyright (C) 2004 - 2006 The T2 SDE Project # # More information can be found in the files COPYING and README. # # This patch file is dual-licensed. It is available under the license the # patched project is licensed under, as long as it is an OpenSource license # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms # of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # --- T2-COPYRIGHT-NOTE-END --- A compiler built by a cross compiler does install a specs file that is marked as cross-compiler. Since it is ugly to fix and gcc-4.x does not install the specs file anymore - let's just get rid of it now. - Rene Rebe --- gcc-3.4.3/gcc/Makefile.in 2004-10-18 18:00:39.000000000 +0200 +++ gcc-3.4.3-fix/gcc/Makefile.in 2005-06-08 19:15:17.000000000 +0200 @@ -2907,7 +2907,7 @@ else true; fi; \ done # Don't mess with specs if it doesn't exist yet. - -if [ -f specs ] ; then \ + -if [ -f specsXXX ] ; then \ rm -f $(DESTDIR)$(libsubdir)/specs; \ $(INSTALL_DATA) $(SPECS) $(DESTDIR)$(libsubdir)/specs; \ chmod a-x $(DESTDIR)$(libsubdir)/specs; \