From patchwork Wed Oct 17 14:03:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johannes Stezenbach X-Patchwork-Id: 192051 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id AD9A22C0091 for ; Thu, 18 Oct 2012 01:03:37 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=sourceware.org; s=default; x=1351087418; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Date:From:To:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition:User-Agent:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Subscribe:List-Archive:List-Post:List-Help: Sender:Delivered-To; bh=HqhmoSQNibhpL1F+wzaEp4fm5R4=; b=ZfJN/16U ilqx6lBMq75JVsVV/hSN3EBvhow99sfz/sMn6MF0EBlXCRu12Hz9t7+4raNe1etC KRD64M4ZbO2A/kFvyV6DlYhlvOjeIp7RCSwrsi+7unZimJu8W58ycO2Q998PwMIV nJvQQENXupaVjW6LG2r60SMgHE3o5FFeH5g= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=sourceware.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Date:From:To:Subject:Message-ID:MIME-Version:Content-Type:Content-Disposition:User-Agent:X-Spam-21-Score:X-Spam-21-Report:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Subscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=LRWuYjVWlJ5LBHdhv7va1ebSb6aKRJSPGIvedB99i/+oT6rXnpM0u+QCuT9T/M A7hNgBelVf89nLdbPKmZOmEPyTjPIIBBbmHgsOtFLZIUJBdnxHAHYn2Tiuct08ID Urgpdeg3bq0wMXIu41mdBJKx24TspyvTsHtqy3nhlZMLM=; Received: (qmail 8911 invoked by alias); 17 Oct 2012 14:03:34 -0000 Received: (qmail 8903 invoked by uid 22791); 17 Oct 2012 14:03:34 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from bar.sig21.net (HELO bar.sig21.net) (80.81.252.164) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 17 Oct 2012 14:03:30 +0000 Received: from p5099b351.dip0.t-ipconnect.de ([80.153.179.81] helo=zzz.local) by bar.sig21.net with esmtpsa (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.72) (envelope-from ) id 1TOUDX-0002Wc-RA for crossgcc@sourceware.org; Wed, 17 Oct 2012 16:03:29 +0200 Received: from js by zzz.local with local (Exim 4.80) (envelope-from ) id 1TOUDW-0002qG-Ng for crossgcc@sourceware.org; Wed, 17 Oct 2012 16:03:26 +0200 Date: Wed, 17 Oct 2012 16:03:26 +0200 From: Johannes Stezenbach To: crossgcc@sourceware.org Subject: eglibc-2.16 manual Message-ID: <20121017140326.GB10888@sig21.net> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-Spam-21-Score: -2.9 (--) X-Spam-21-Report: No, score=-2.9 required=8.0 tests=ALL_TRUSTED=-1, BAYES_00=-1.9 autolearn=ham X-IsSubscribed: yes Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Delivered-To: mailing list crossgcc@sourceware.org Hi, building the pdf manuals fails for eglibc-2.16 in the step which copies the finished docs. This is the change I used to make the build succeed: The question is which version of eglibc fixed the manual build location, and how to apply this change in ct-ng so it doesn't break it for older eglibc versions? Cheers, Johannes --- For unsubscribe information see http://sourceware.org/lists.html#faq diff -r c94bf1e11db2 scripts/build/libc/glibc-eglibc.sh-common --- a/scripts/build/libc/glibc-eglibc.sh-common Mon Oct 15 11:48:02 2012 +0200 +++ b/scripts/build/libc/glibc-eglibc.sh-common Wed Oct 17 10:43:43 2012 +0200 @@ -453,10 +453,9 @@ # Omit JOBSFLAGS as GLIBC has problems building the # manuals in parallel CT_DoExecLog ALL make pdf html - # EGLIBC doesn't have a install-{pdf.html} and leaves the manuals - # in the source directory + # EGLIBC doesn't have a install-{pdf.html} CT_DoExecLog ALL mkdir -p ${CT_PREFIX_DIR}/share/doc - CT_DoExecLog ALL cp -av ${src_dir}/manual/*.pdf ${src_dir}/manual/libc \ + CT_DoExecLog ALL cp -av manual/*.pdf manual/libc \ ${CT_PREFIX_DIR}/share/doc fi