From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 99A73138E20 for ; Fri, 21 Feb 2014 16:22:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99454E0E97; Fri, 21 Feb 2014 16:07:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A65CE0E97 for ; Fri, 21 Feb 2014 16:07:30 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6027C33FA72 for ; Fri, 21 Feb 2014 16:07:29 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2264) id BB7AD2004C; Fri, 21 Feb 2014 16:07:25 +0000 (UTC) From: "Justin Lecher (jlec)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, jlec@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog intel-sdp.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog intel-sdp.eclass X-VCS-Directories: eclass X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140221160725.BB7AD2004C@flycatcher.gentoo.org> Date: Fri, 21 Feb 2014 16:07:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 82269182-937e-4579-b9f8-38d92c089b78 X-Archives-Hash: bef8023389e9836312322533c7abb76b jlec 14/02/21 16:07:25 Modified: ChangeLog intel-sdp.eclass Log: Make problems with man page installation nonfatal Revision Changes Path 1.1143 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1143&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1143&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1142&r2=1.1143 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.1142 retrieving revision 1.1143 diff -u -r1.1142 -r1.1143 --- ChangeLog 11 Feb 2014 21:14:20 -0000 1.1142 +++ ChangeLog 21 Feb 2014 16:07:25 -0000 1.1143 @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1142 2014/02/11 21:14:20 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1143 2014/02/21 16:07:25 jlec Exp $ + + 21 Feb 2014; Justin Lecher intel-sdp.eclass: + Make problems with man page installation nonfatal 11 Feb 2014; Pacho Ramos gnome2.eclass: Pass --docdir with proper directory, bug #482646 1.17 eclass/intel-sdp.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/intel-sdp.eclass?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/intel-sdp.eclass?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/intel-sdp.eclass?r1=1.16&r2=1.17 Index: intel-sdp.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- intel-sdp.eclass 20 Feb 2014 09:47:09 -0000 1.16 +++ intel-sdp.eclass 21 Feb 2014 16:07:25 -0000 1.17 @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v 1.16 2014/02/20 09:47:09 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v 1.17 2014/02/21 16:07:25 jlec Exp $ # @ECLASS: intel-sdp.eclass # @MAINTAINER: @@ -435,7 +435,8 @@ fi if [[ -d "${INTEL_SDP_DIR}"/man ]]; then - doman "${INTEL_SDP_DIR}"/man/en_US/man1/* + nonfatal doman "${INTEL_SDP_DIR}"/man/en_US/man1/* + nonfatal doman "${INTEL_SDP_DIR}"/man/man1/* if has linguas_ja ${IUSE} && use linguas_ja; then doman -i18n=ja_JP "${INTEL_SDP_DIR}"/man/ja_JP/man1/* fi