This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Fix intermittent Ada bootstrap failures


> This patch should go in Makefile.def (and regenerating Makefile.tpl).  I
> would consider it obvious.

I presume you meant regenerating Makefile.in?

> Also, it may apply to 4.0 as well.

Yes, it does, that's a regression there too.

Thanks for the tip.


2005-10-19  Eric Botcazou  <ebotcazou@adacore.com>

	PR bootstrap/18939
        * Makefile.def (gcc) <target>: Fix thinko.
	* Makefile.in: Regenerate.


-- 
Eric Botcazou
Index: Makefile.def
===================================================================
RCS file: /cvs/gcc/gcc/Makefile.def,v
retrieving revision 1.60
diff -u -r1.60 Makefile.def
--- Makefile.def	6 Oct 2005 15:24:06 -0000	1.60
+++ Makefile.def	19 Oct 2005 21:37:57 -0000
@@ -60,7 +60,7 @@
 host_modules= { module= flex; no_check_cross= true; };
 host_modules= { module= gas; bootstrap=true; };
 host_modules= { module= gcc; bootstrap=true; 
-		target="`if [ -f gcc/stage_last ]; then echo quickstrap ; else echo all; fi`";
+		target="`if [ -f stage_last ]; then echo quickstrap ; else echo all; fi`";
 		extra_make_flags="$(EXTRA_GCC_FLAGS)"; };
 host_modules= { module= gawk; };
 host_modules= { module= gettext; };

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]