[Bug bootstrap/77661] --enable-maintainer-mode causes in-tree-build of MPC to fail

2017-02-27 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77661

Thomas Koenig  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Last reconfirmed||2017-02-27
 CC||tkoenig at gcc dot gnu.org
 Ever confirmed|0   |1

--- Comment #4 from Thomas Koenig  ---
Same thing happened to me.

Is it possible to get the patch committed?

[Bug bootstrap/77661] --enable-maintainer-mode causes in-tree-build of MPC to fail

2016-09-20 Thread burnus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77661

--- Comment #3 from Tobias Burnus  ---
Patch: https://gcc.gnu.org/ml/gcc-patches/2016-09/msg01294.html

[Bug bootstrap/77661] --enable-maintainer-mode causes in-tree-build of MPC to fail

2016-09-20 Thread burnus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77661

--- Comment #2 from Tobias Burnus  ---
(In reply to Richard Biener from comment #1)
> Does adding --disable-maintainer-mode to Makefile.def extra_configure_flags
> for MPC help?

Yes, using

--- a/Makefile.def
+++ b/Makefile.def
@@ -65,3 +65,3 @@ host_modules= { module= mpfr; lib_path=src/.libs;
bootstrap=true;
 host_modules= { module= mpc; lib_path=src/.libs; bootstrap=true;
-   extra_configure_flags='--disable-shared
@extra_mpc_gmp_configure_flags@ @extra_mpc_mpfr_configure_flags@';
+   extra_configure_flags='--disable-shared
@extra_mpc_gmp_configure_flags@ @extra_mpc_mpfr_configure_flags@
--disable-maintainer-mode';
no_install= true; };

(Makefile.in will then get the changed by regenerating it.)

[Bug bootstrap/77661] --enable-maintainer-mode causes in-tree-build of MPC to fail

2016-09-20 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77661

--- Comment #1 from Richard Biener  ---
Does adding --disable-maintainer-mode to Makefile.def extra_configure_flags for
MPC help?