From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3672 invoked by alias); 17 Jan 2010 01:07:14 -0000 Received: (qmail 3657 invoked by uid 22791); 17 Jan 2010 01:07:13 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,HK_OBFDOM X-Spam-Check-By: sourceware.org Received: from nwd2mail11.analog.com (HELO nwd2mail11.analog.com) (137.71.25.57) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 17 Jan 2010 01:07:09 +0000 Received: from nwd2hubcas2.ad.analog.com ([10.64.73.30]) by nwd2mail11.analog.com with ESMTP; 16 Jan 2010 20:07:07 -0500 Received: from nwd2exm5.ad.analog.com (10.64.51.20) by NWD2HUBCAS2.ad.analog.com (10.64.73.30) with Microsoft SMTP Server id 8.1.358.0; Sat, 16 Jan 2010 20:07:06 -0500 Received: from chinexm1.ad.analog.com ([10.99.27.42]) by nwd2exm5.ad.analog.com with Microsoft SMTPSVC(6.0.3790.3959); Sat, 16 Jan 2010 20:07:06 -0500 Received: from [192.168.5.133] ([10.99.29.111]) by chinexm1.ad.analog.com with Microsoft SMTPSVC(6.0.3790.1830); Sun, 17 Jan 2010 09:07:01 +0800 Message-ID: <4B5262AC.3080606@analog.com> Date: Sun, 17 Jan 2010 01:07:00 -0000 From: Jie Zhang User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.5) Gecko/20100114 Lightning/1.0b1 Shredder/3.0 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: [RFA] Fix a parallel build error in doc Content-Type: multipart/mixed; boundary="------------030503080109000805010602" 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: 2010-01/txt/msg00432.txt.bz2 --------------030503080109000805010602 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Content-length: 1261 Hi, I just found this when building our Blackfin port GDB with -j4 : makeinfo --split-size=5000000 -I /home/jie/blackfin-sources/toolchain/trunk/binutils-2.20/gdb/doc -o annotate.info /home/jie/blackfin-sources/toolchain/trunk/binutils-2.20/gdb/doc/annotate.texinfo echo "@set BUGURL @uref{http://www.gnu.org/software/gdb/bugs/}" >> ./GDBvn.new ./gdb-cfg.texi:16: @include `GDBvn.texi': No such file or directory. 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 mv GDBvn.new GDBvn.texi makeinfo --split-size=5000000 -I /home/jie/blackfin-sources/toolchain/trunk/binutils-2.20/gdb/doc/../../readline/doc -I /home/jie/blackfin-sources/toolchain/trunk/binutils-2.20/gdb/doc/../mi -I /home/jie/blackfin-sources/toolchain/trunk/binutils-2.20/gdb/doc \ -o gdb.info /home/jie/blackfin-sources/toolchain/trunk/binutils-2.20/gdb/doc/gdb.texinfo Making install in doc makeinfo: Removing output file `annotate.info' due to errors; use --force to preserve. make[3]: *** [annotate.info] Error 1 We should also add GDBvn.texi in ANNOTATE_DOC_BUILD_INCLUDES, shouldn't we? Is the attached patch OK? Thanks, Jie --------------030503080109000805010602 Content-Type: text/x-diff; name="gdb-doc-makefile-fix-annotate-dep.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="gdb-doc-makefile-fix-annotate-dep.diff" Content-length: 605 * Makefile.in (ANNOTATE_DOC_BUILD_INCLUDES): Add GDBvn.texi. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/doc/Makefile.in,v retrieving revision 1.48 diff -u -p -r1.48 Makefile.in --- Makefile.in 1 Jan 2010 07:31:48 -0000 1.48 +++ Makefile.in 17 Jan 2010 00:59:29 -0000 @@ -147,7 +147,8 @@ STABS_DOC_FILES = \ ANNOTATE_DOC_SOURCE_INCLUDES = \ $(srcdir)/fdl.texi ANNOTATE_DOC_BUILD_INCLUDES = \ - gdb-cfg.texi + gdb-cfg.texi \ + GDBvn.texi ANNOTATE_DOC_FILES = \ $(srcdir)/annotate.texinfo \ $(ANNOTATE_DOC_SOURCE_INCLUDES) \ --------------030503080109000805010602--