From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32249 invoked by alias); 16 Feb 2007 17:26:06 -0000 Received: (qmail 32240 invoked by uid 22791); 16 Feb 2007 17:26:06 -0000 X-Spam-Check-By: sourceware.org Received: from phoenix.bawue.net (HELO mail.bawue.net) (193.7.176.60) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 16 Feb 2007 17:26:00 +0000 Received: from lagash (intrt.mips-uk.com [194.74.144.130]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bawue.net (Postfix) with ESMTP id 8042EB9DD6 for ; Fri, 16 Feb 2007 18:19:28 +0100 (CET) Received: from ths by lagash with local (Exim 4.63) (envelope-from ) id 1HI6lq-0002Lu-TH for gdb-patches@sources.redhat.com; Fri, 16 Feb 2007 17:21:18 +0000 Date: Fri, 16 Feb 2007 17:26:00 -0000 To: gdb-patches@sources.redhat.com Subject: [PATCH] Make sim's RUNTEST overridable Message-ID: <20070216172118.GB31271@networkno.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: Thiemo Seufer X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2007-02/txt/msg00206.txt.bz2 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 * 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)"