From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29393 invoked by alias); 14 Sep 2012 06:53:00 -0000 Received: (qmail 29384 invoked by uid 22791); 14 Sep 2012 06:52:58 -0000 X-SWARE-Spam-Status: No, hits=-3.9 required=5.0 tests=BAYES_00,KHOP_THREADED,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from server-nat-6.cs.umd.edu (HELO bacon.cs.umd.edu) (128.8.127.149) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 14 Sep 2012 06:52:38 +0000 Received: from [192.168.32.2] (pool-96-240-134-12.washdc.fios.verizon.net [96.240.134.12]) (Authenticated sender: khooyp) by bacon.cs.umd.edu (Postfix) with ESMTPSA id A9FA3B40867; Fri, 14 Sep 2012 02:52:24 -0400 (EDT) Subject: Re: Regression for --batch [Re: [RFC] Make python/lib/gdb and submodules proper Python modules] Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: multipart/mixed; boundary=Apple-Mail-8--68846938 From: Khoo Yit Phang In-Reply-To: <20120914063700.GA7238@host2.jankratochvil.net> Date: Fri, 14 Sep 2012 06:53:00 -0000 Cc: Khoo Yit Phang , Tom Tromey , GDB Patches Message-Id: References: <87obldbom1.fsf@fleche.redhat.com> <446971D4-9F73-4CD9-B307-C22D4C079305@cs.umd.edu> <87zk4t1w1z.fsf@fleche.redhat.com> <20120914054758.GA5191@host2.jankratochvil.net> <20120914061549.GA6011@host2.jankratochvil.net> <54EDADDA-035D-47FB-802F-5B0C86BF37A0@cs.umd.edu> <20120914063700.GA7238@host2.jankratochvil.net> To: Jan Kratochvil X-CSD-MailScanner-ID: A9FA3B40867.A128F X-CSD-MailScanner: Found to be clean X-CSD-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-50, required 5, autolearn=not spam, ALL_TRUSTED -50.00) X-CSD-MailScanner-From: khooyp@cs.umd.edu X-CSD-MailScanner-Watermark: 1348210346.99391@eRjhitUqYkzPNEV1KwEHEA 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: 2012-09/txt/msg00266.txt.bz2 --Apple-Mail-8--68846938 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Content-length: 124 Hi, Here's a patch that points gdb/contrib/cc-with-tweaks.sh to the appropriate= data-directory. Yit September 14, 2012 --Apple-Mail-8--68846938 Content-Disposition: attachment; filename=fix-cc-with-tweaks.txt Content-Type: text/plain; x-unix-mode=0600; name="fix-cc-with-tweaks.txt" Content-Transfer-Encoding: 7bit Content-length: 744 2012-09-14 Khoo Yit Phang Point contrib/cc-with-tweaks.sh to the build-local data-directory. * contrib/cc-with-tweaks.sh (GDB): Add -data-directory data-directory as appropriate. diff --git a/gdb/contrib/cc-with-tweaks.sh b/gdb/contrib/cc-with-tweaks.sh --- a/gdb/contrib/cc-with-tweaks.sh +++ b/gdb/contrib/cc-with-tweaks.sh @@ -46,13 +46,13 @@ then if [ -f ./gdb ] then - GDB="./gdb" + GDB="./gdb -data-directory data-directory" elif [ -f ../gdb ] then - GDB="../gdb" + GDB="../gdb -data-directory ../data-directory" elif [ -f ../../gdb ] then - GDB="../../gdb" + GDB="../../gdb -data-directory ../../data-directory" else echo "$myname: unable to find usable gdb" >&2 exit 1 --Apple-Mail-8--68846938--