This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB 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]

[PATCH] Make sim's RUNTEST overridable


Hello All,

the appended patch adds RUNTEST to *FLAGS_TO_PASS, this allows to
override the runtest to use from the make command line.

Ok to apply?


Thiemo


2007-02-16  Thiemo Seufer  <ths@mips.com>

	* Makefile.in (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS): Add RUNTEST.


Index: sim/Makefile.in
===================================================================
RCS file: /cvsroot/gcc/upstream-src-cvs/src/sim/Makefile.in,v
retrieving revision 1.11
diff -u -p -r1.11 Makefile.in
--- sim/Makefile.in	9 Jan 2007 17:59:15 -0000	1.11
+++ sim/Makefile.in	16 Feb 2007 17:12:36 -0000
@@ -97,6 +97,7 @@ FLAGS_TO_PASS = \
 	"INSTALL=$(INSTALL)" \
 	"INSTALL_DATA=$(INSTALL_DATA)" \
 	"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
+	"RUNTEST=$(RUNTEST)" \
 	"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
 	"SHELL=$(SHELL)"
 
@@ -120,6 +121,7 @@ TARGET_FLAGS_TO_PASS = \
 	"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
 	"INSTALL_DATA=$(INSTALL_DATA)" \
 	"MAKEINFO=$(MAKEINFO)" \
+	"RUNTEST=$(RUNTEST)" \
 	"RUNTESTFLAGS=$(RUNTESTFLAGS)"
 
 


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