From patchwork Mon Oct 22 13:32:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johannes Stezenbach X-Patchwork-Id: 193156 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 236C42C008B for ; Tue, 23 Oct 2012 00:32:53 +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=1351517574; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To:User-Agent: Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Subscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=vFf431z rdfeVC6P9KU0N2D/j4Sg=; b=n1U7HZLOyVqhq78+eUxltcBqO5mmqzQmtO+URrd Sp1j0TSkT3GpZDZTaJt8jZ3kKVtfeWhVpxnZbXuRY9Ca/NHOg9WZjh/UD5HCdbub VWUbphyxqAkgEcIu6dufR1rHexJPnTJ5Tq0v4v6C80+LssjOb89AkSfXGDeAH+QI ShLw= 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:Cc:Subject:Message-ID:References:MIME-Version:Content-Type:Content-Disposition:In-Reply-To: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=fsYyPDFZ8IG7HzBR1bluSb1kadmLHrTBnDnuBnSbwbCHUAF4V7EEAnINUTwttk F1A3k+K5BA3R3ndlc91mTt5piVXJFTvp1QQCl9uZWnI0kUC7uwoJ1WsyIHz79N2R Rt/23WjyI/w3Uf77vDnKk3D5Fjw8bInWa/R+NkSKJ35Uc=; Received: (qmail 19857 invoked by alias); 22 Oct 2012 13:32:49 -0000 Received: (qmail 19844 invoked by uid 22791); 22 Oct 2012 13:32:46 -0000 X-SWARE-Spam-Status: No, hits=-2.3 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; Mon, 22 Oct 2012 13:32:43 +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 1TQI7L-0000y9-8G; Mon, 22 Oct 2012 15:32:36 +0200 Received: from js by zzz.local with local (Exim 4.80) (envelope-from ) id 1TQI7I-0004J3-CJ; Mon, 22 Oct 2012 15:32:28 +0200 Date: Mon, 22 Oct 2012 15:32:28 +0200 From: Johannes Stezenbach To: "Yann E. MORIN" Cc: crossgcc@sourceware.org Subject: [PATCH] fix eglibc-2.16 manual build Message-ID: <20121022133228.GA16536@sig21.net> References: <20121017140326.GB10888@sig21.net> <201210220016.04818.yann.morin.1998@free.fr> <20121022132814.GA27710@sig21.net> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20121022132814.GA27710@sig21.net> 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 Signed-off-by: Johannes Stezenbach --- For unsubscribe information see http://sourceware.org/lists.html#faq diff -r 0e06812acc5c scripts/build/libc/glibc-eglibc.sh-common --- a/scripts/build/libc/glibc-eglibc.sh-common Wed Sep 26 16:41:02 2012 +0200 +++ b/scripts/build/libc/glibc-eglibc.sh-common Mon Oct 22 15:31:57 2012 +0200 @@ -453,11 +453,16 @@ # 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}, and older + # versions leave the manuals in the source directory CT_DoExecLog ALL mkdir -p ${CT_PREFIX_DIR}/share/doc - CT_DoExecLog ALL cp -av ${src_dir}/manual/*.pdf ${src_dir}/manual/libc \ - ${CT_PREFIX_DIR}/share/doc + if [ ${CT_LIBC_EGLIBC_2_16_or_later} = "y" ]; then + CT_DoExecLog ALL cp -av manual/*.pdf manual/libc \ + ${CT_PREFIX_DIR}/share/doc + else + CT_DoExecLog ALL cp -av ${src_dir}/manual/*.pdf ${src_dir}/manual/libc \ + ${CT_PREFIX_DIR}/share/doc + fi fi if [ "${CT_LIBC_LOCALES}" = "y" ]; then