https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78756
Bug ID: 78756 Summary: Missing prefix in the name of gfortran.info Product: gcc Version: 6.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: bootstrap Assignee: unassigned at gcc dot gnu.org Reporter: mojca at macports dot org Target Milestone: --- I'm trying to build GCC for the MinGW-w64 cross-compiler with fortran support. I end up with the following set of files: $prefix/share/info/gfortran.info $prefix/share/info/i686-w64-mingw32-cpp.info $prefix/share/info/i686-w64-mingw32-cppinternals.info $prefix/share/info/i686-w64-mingw32-gcc.info $prefix/share/info/i686-w64-mingw32-gccinstall.info $prefix/share/info/i686-w64-mingw32-gccint.info ... The binary itself is called /opt/local/bin/i686-w64-mingw32-gfortran and the man page is at /opt/local/share/man/man1/i686-w64-mingw32-gfortran.1.gz Because I'm building for both i686 and x86_64, this creates a conflict between both packages. I would like to request fixing the name to ${target}-gfortran.info. I wasn't sure which component to pick, but I add "bootstrap" after seeing this (related) bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=26500 It's probably not important, but just for completeness here are the configure flags I'm using: --prefix=/opt/local --target=i686-w64-mingw32 --infodir=/opt/local/share/info --mandir=/opt/local/share/man --datarootdir=/opt/local/share/i686-w64-mingw32-gcc --with-system-zlib --with-gmp=/opt/local --with-mpfr=/opt/local --with-mpc=/opt/local --enable-stage1-checking --disable-multilib --libdir=/opt/local/lib/i686-w64-mingw32 --enable-shared --with-dwarf --enable-fully-dynamic-string --enable-libssp --with-cloog=/opt/local --with-ppl=/opt/local --enable-lto --enable-languages="c c++ fortran objc obj-c++"