From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 51012 invoked by alias); 17 Jul 2015 22:38:53 -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 51000 invoked by uid 89); 17 Jul 2015 22:38:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ig0-f175.google.com Received: from mail-ig0-f175.google.com (HELO mail-ig0-f175.google.com) (209.85.213.175) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 17 Jul 2015 22:38:51 +0000 Received: by igbpg9 with SMTP id pg9so5582332igb.0 for ; Fri, 17 Jul 2015 15:38:49 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=4uzqO2vhfDk61T6nI4VE949gQWL+n4HV7md6p8TyGYg=; b=PNltzif7SZBplIdEmAMv70816VRM3lRJU+27E9Jc7C08bUMknkv/B/2IDkSLEEqD2R kEYwweGWfd9OSV7KM3PxulxMTSMkdpKceuJika2DHDZbnO46ArloRXQ4pm0zPUY04sxQ +xY8CAND3O63Px+LJkydPt/l6D8Ok0IofnfEvormxs3mDbCZSUjLVipN+i8crNpL1xut h74FSwHKZzBEgiK1joG+9LHygV2UcDYgiz8ZYD8Z8QhZ8WiSIL/dYQCXY6LJzqnxKJOE Wf6Q70pbyZQ+yCI89778IKPHMUJaVCnjm71gd1UtYGrjNih47z2EzjKXpZV1M8KcejBR V5aw== X-Gm-Message-State: ALoCoQmjtoJrNbfW4omgXuJ5PK+elIc+zLa3QqDT7/7tn4ZzEjczKPyCwuhz3n5K92oywDmiuouH X-Received: by 10.107.155.12 with SMTP id d12mr13923610ioe.131.1437172729577; Fri, 17 Jul 2015 15:38:49 -0700 (PDT) MIME-Version: 1.0 Received: by 10.64.93.102 with HTTP; Fri, 17 Jul 2015 15:38:09 -0700 (PDT) In-Reply-To: <1437172207.19674.100.camel@ubuntu-sellcey> References: <001a11c2e548981b14051b0098eb@google.com> <1437172207.19674.100.camel@ubuntu-sellcey> From: Doug Evans Date: Fri, 17 Jul 2015 22:38:00 -0000 Message-ID: Subject: Re: [doc RFA] stabs.texinfo: @include gdb-cfg.texi. To: sellcey@imgtec.com Cc: Eli Zaretskii , gdb-patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg00531.txt.bz2 On Fri, Jul 17, 2015 at 3:30 PM, Steve Ellcey wrote: > On Thu, 2015-07-16 at 16:30 +0000, Doug Evans wrote: > >> 2015-07-16 Doug Evans >> >> * stabs.texinfo: @include gdb-cfg.texi. >> >> diff --git a/gdb/doc/stabs.texinfo b/gdb/doc/stabs.texinfo >> index 15c4152..c4ea037 100644 >> --- a/gdb/doc/stabs.texinfo >> +++ b/gdb/doc/stabs.texinfo >> @@ -3,6 +3,10 @@ >> @setchapternewpage odd >> @settitle STABS >> >> +@c man begin INCLUDE >> +@include gdb-cfg.texi >> +@c man end >> + >> @c @finalout >> >> @c This is a dir.info fragment to support semi-automated addition of > > This patch breaks my parallel gdb builds (though the bug may be a latent > one that this change finally causes to trigger). On my machine my > parallel GDB build dies with: > > ./gdb-cfg.texi:16: @include `GDBvn.texi': No such file or directory. > > And then later in the log I see: > > mv GDBvn.new GDBvn.texi > > I think there is a missing dependency in the doc/Makefile.in to say that > GDBvn.texi needs to be built before gdb-cfg.texi. Bleah. I think we just need to update STABS_DOC_BUILD_INCLUDES to be like GDB_DOC_BUILD_INCLUDES. I'll take care of it. Thanks for the report.