Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: toolchain.eclass
Date: Fri, 02 Dec 2011 21:04:00
Message-Id: 20111202210339.6ED592004B@flycatcher.gentoo.org
1 vapier 11/12/02 21:03:39
2
3 Modified: toolchain.eclass
4 Log:
5 find the C++ man page dir dynamically to handle gcc-4.3+ #273654 by David Flogeras
6
7 Revision Changes Path
8 1.484 eclass/toolchain.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.484&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.484&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?r1=1.483&r2=1.484
13
14 Index: toolchain.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v
17 retrieving revision 1.483
18 retrieving revision 1.484
19 diff -u -r1.483 -r1.484
20 --- toolchain.eclass 30 Nov 2011 23:53:57 -0000 1.483
21 +++ toolchain.eclass 2 Dec 2011 21:03:39 -0000 1.484
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2011 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.483 2011/11/30 23:53:57 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.484 2011/12/02 21:03:39 vapier Exp $
27 #
28 # Maintainer: Toolchain Ninjas <toolchain@g.o>
29
30 @@ -1787,7 +1787,7 @@
31 rm -rf "${D}"/usr/share/{man,info}
32 rm -rf "${D}"${DATAPATH}/{man,info}
33 else
34 - local cxx_mandir=${WORKDIR}/build/${CTARGET}/libstdc++-v3/docs/doxygen/man
35 + local cxx_mandir=$(find "${WORKDIR}/build/${CTARGET}/libstdc++-v3" -name man)
36 if [[ -d ${cxx_mandir} ]] ; then
37 # clean bogus manpages #113902
38 find "${cxx_mandir}" -name '*_build_*' -exec rm {} \;