diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-02-21 16:07:25 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-02-21 16:07:25 +0000 |
commit | 0876716e16a40b2d2b23fdde8833e9c8546e2f37 (patch) | |
tree | f66aa5fafcc71fc569569154633976b10be4d967 /eclass/intel-sdp.eclass | |
parent | dev-python/numexpr: Fix nameing of doc files (diff) | |
download | gentoo-2-0876716e16a40b2d2b23fdde8833e9c8546e2f37.tar.gz gentoo-2-0876716e16a40b2d2b23fdde8833e9c8546e2f37.tar.bz2 gentoo-2-0876716e16a40b2d2b23fdde8833e9c8546e2f37.zip |
Make problems with man page installation nonfatal
Diffstat (limited to 'eclass/intel-sdp.eclass')
-rw-r--r-- | eclass/intel-sdp.eclass | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/eclass/intel-sdp.eclass b/eclass/intel-sdp.eclass index 5e9a88348f62..6019168ef1a8 100644 --- a/eclass/intel-sdp.eclass +++ b/eclass/intel-sdp.eclass @@ -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 @@ intel-sdp_src_install() { 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 |