Package: gcc-2.95 Version: 2.95.4.ds15-25 Severity: serious Tags: patch Hello GCC maintainers,
gcc-2.95 FTBFS on alpha as seen here: <http://buildd.debian.org/fetch.php?pkg=gcc-2.95%26ver=2.95.4.ds15-25%26arch=alpha%26stamp=1149582600%26file=log> While investigating, I found a simple work-around: simply not building f77 on alpha avoid the problem (I have made a test build on escher). This is not perfect but the alpha porters do not feel the need for gcc-2.95 on alpha anyway. I provide a patch that implement this solution. Thanks for considering, -- Bill. <[EMAIL PROTECTED]> Imagine a large red swirl here.
diff -u gcc-2.95-2.95.4.ds15/debian/rules.defs gcc-2.95-2.95.4.ds15/debian/rules.defs --- gcc-2.95-2.95.4.ds15/debian/rules.defs +++ gcc-2.95-2.95.4.ds15/debian/rules.defs @@ -138,9 +138,9 @@ endif with_fortran := yes -#ifeq ($(DEB_HOST_ARCH),hurd-i386) -# with_fortran := disabled for architecture $(DEB_HOST_ARCH) -#endif +ifeq ($(DEB_HOST_ARCH),alpha) + with_fortran := disabled for architecture $(DEB_HOST_ARCH) +endif ifeq ($(with_fortran),yes) enabled_languages += f77