From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32499 invoked by alias); 24 May 2013 01:33:04 -0000 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 Received: (qmail 32488 invoked by uid 89); 24 May 2013 01:33:04 -0000 X-Spam-SWARE-Status: No, score=-3.3 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,KHOP_THREADED,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_YE,SPF_PASS,TW_DB autolearn=ham version=3.3.1 Received: from mail-pd0-f179.google.com (HELO mail-pd0-f179.google.com) (209.85.192.179) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Fri, 24 May 2013 01:33:03 +0000 Received: by mail-pd0-f179.google.com with SMTP id q11so3553149pdj.10 for ; Thu, 23 May 2013 18:33:02 -0700 (PDT) X-Received: by 10.68.160.162 with SMTP id xl2mr15931709pbb.84.1369359181557; Thu, 23 May 2013 18:33:01 -0700 (PDT) Received: from [192.168.0.112] ([124.160.24.211]) by mx.google.com with ESMTPSA id ra4sm15026295pab.9.2013.05.23.18.32.58 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 23 May 2013 18:33:00 -0700 (PDT) Message-ID: <519EC4A6.8080205@gmail.com> Date: Fri, 24 May 2013 01:33:00 -0000 From: asmwarrior User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/17.0 Thunderbird/17.0a1 MIME-Version: 1.0 To: Joel Brobecker CC: Eli Zaretskii , gdb-patches@sourceware.org Subject: Re: Checked in: [RFA/Doco] Document new /system-gdbinit area References: <1369128288-3495-1-git-send-email-brobecker@adacore.com> <83d2skuuai.fsf@gnu.org> <20130522062815.GZ4017@adacore.com> <83obc3t68n.fsf@gnu.org> <20130523060831.GD4017@adacore.com> In-Reply-To: <20130523060831.GD4017@adacore.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2013-05/txt/msg00898.txt.bz2 On 2013-5-23 14:08, Joel Brobecker wrote: >>> First attached is a patch which provides the changes made on top >>> of the first submission, showing the changes I made based on your >>> feedback. It also includes a NEWS entry. >>> >>> And second patch is the actual full patch. >>> >>> gdb/doc/ChangeLog: >>> >>> * gdb.texinfo (Installed System-wide Configuration Scripts): >>> Add subsection describing the scripts now available under >>> the data-dir's system-gdbbinit subdirectory. >>> * NEWS: Add entry announcing the availability of system-wide >>> configuration scripts for ElinOS and Wind River Linux. >>> >>> OK to commit? >> >> Yes, with one gotcha: > > Thanks, Eli. Checked in with the small correction you pointed out. > For the record, attached is the exact patch that got checked in. > I see an error when I run the command below (in MSYS) make install INSTALL_PROGRAM='install -s' -C gdb make[2]: Entering directory `/f/build_gdb/abuild/gdb' make[3]: Entering directory `/f/build_gdb/abuild/gdb/doc' echo "@set GDBVN `sed q ../../../archer/gdb/doc/../version.in`" > ./GDBvn.new if [ -n "(GDB) " ]; then \ echo "@set VERSION_PACKAGE (GDB) " >> ./GDBvn.new; \ fi echo "@set BUGURL @uref{http://www.gnu.org/software/gdb/bugs/}" >> ./GDBvn.new if [ "@uref{http://www.gnu.org/software/gdb/bugs/}" = "@uref{http://www.gnu.org/ software/gdb/bugs/}" ]; then \ echo "@set BUGURL_DEFAULT" >> ./GDBvn.new; \ fi if test -z "-I ../../../archer/gdb/doc/../../readline/doc"; then \ echo "@set SYSTEM_READLINE" >> ./GDBvn.new; \ fi if [ -n "" ]; then \ echo "@set SYSTEM_GDBINIT " >> ./GDBvn.new; \ fi mv GDBvn.new GDBvn.texi makeinfo --split-size=5000000 -DHAVE_MAKEINFO_CLICK -I ../../../archer/gdb/doc/ ../../readline/doc -I ../../../archer/gdb/doc/../mi -I ../../../archer/gdb/doc \ -o gdb.info ../../../archer/gdb/doc/gdb.texinfo ../../../archer/gdb/doc/gdb.texinfo:36367: `Installed System-wide Configuration Scripts' has no Up field (perhaps incorrect sectioning?). ../../../archer/gdb/doc/gdb.texinfo:36367: warning: unreferenced node `Installed System-wide Configuration Scripts'. makeinfo: Removing output file `gdb.info' due to errors; use --force to preserve . make[3]: *** [gdb.info] Error 1 make[3]: Leaving directory `/f/build_gdb/abuild/gdb/doc' make[2]: *** [subdir_do] Error 1 make[2]: Leaving directory `/f/build_gdb/abuild/gdb' make[1]: *** [install-only] Error 2 make[1]: Leaving directory `/f/build_gdb/abuild/gdb' make: *** [install] Error 2 make: Leaving directory `/f/build_gdb/abuild/gdb' Any ideas? Yuanhui Zhang