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]

[committed] Fix PR ada/12761


Committed, obvious.  Tests on i686-pc-linux-gnu work; cross tests for hppa
appear to work.

	PR ada/12761
	* ada/Make-lang.in: Move default definitions of X_ADA_CFLAGS,
	T_ADA_CFLAGS, X_ADAFLAGS, T_ADAFLAGS from here...
	* Makefile.in: ...to here.

Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.1185
diff -u -r1.1185 Makefile.in
--- Makefile.in	27 Oct 2003 00:26:42 -0000	1.1185
+++ Makefile.in	31 Oct 2003 09:41:48 -0000
@@ -99,6 +99,18 @@
 
 vpath %.texi $(docdir):$(docdir)/include
 
+# ----
+# Default values for variables overridden in Makefile fragments.
+# These need to be quite early in the Makefile so as to avoid
+# trouble induced by changes in fragment ordering.
+# ----
+
+# For ada/Make-lang.in; overridden in, for example, config/pa/x-ada.
+X_ADA_CFLAGS =
+T_ADA_CFLAGS =
+X_ADAFLAGS =
+T_ADAFLAGS =
+
 # --------
 # UNSORTED
 # --------
Index: ada/Make-lang.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ada/Make-lang.in,v
retrieving revision 1.45
diff -u -r1.45 Make-lang.in
--- ada/Make-lang.in	27 Oct 2003 14:27:17 -0000	1.45
+++ ada/Make-lang.in	31 Oct 2003 09:41:56 -0000
@@ -46,11 +46,6 @@
 # default extensions
 shext  =
 
-X_ADA_CFLAGS =
-T_ADA_CFLAGS =
-
-X_ADAFLAGS =
-T_ADAFLAGS =
 
 # Extra flags to pass to recursive makes.
 BOOT_ADAFLAGS= $(ADAFLAGS)

-- 
Nathanael Nerode  <neroden at gcc.gnu.org>
http://home.twcny.rr.com/nerode/neroden/fdl.html


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