Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/glibc/files/eblits: src_install-2.6.eblit
Date: Sun, 29 Jun 2008 16:39:29
Message-Id: E1KCzvv-0003Dx-M1@stork.gentoo.org
1 vapier 08/06/29 16:39:23
2
3 Modified: src_install-2.6.eblit
4 Log:
5 Short circuit header building in pkg testing and ABI recursion. (2.6.1 fix #229923)
6 (Portage version: 2.2_rc1/cvs/Linux 2.6.25 x86_64)
7
8 Revision Changes Path
9 1.2 sys-libs/glibc/files/eblits/src_install-2.6.eblit
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/glibc/files/eblits/src_install-2.6.eblit?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/glibc/files/eblits/src_install-2.6.eblit?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/glibc/files/eblits/src_install-2.6.eblit?r1=1.1&r2=1.2
14
15 Index: src_install-2.6.eblit
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_install-2.6.eblit,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- src_install-2.6.eblit 24 Mar 2008 19:45:15 -0000 1.1
22 +++ src_install-2.6.eblit 29 Jun 2008 16:39:23 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_install-2.6.eblit,v 1.1 2008/03/24 19:45:15 vapier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_install-2.6.eblit,v 1.2 2008/06/29 16:39:23 vapier Exp $
28
29 toolchain-glibc_src_install() {
30 # These should not be set, else the
31 @@ -217,6 +217,11 @@
32 }
33
34 eblit-glibc-src_install() {
35 + if just_headers ; then
36 + toolchain-glibc_headers_install
37 + return
38 + fi
39 +
40 setup_env
41
42 if [[ -z ${OABI} ]] ; then
43 @@ -240,10 +245,6 @@
44 fi
45 fi
46
47 - if just_headers ; then
48 - toolchain-glibc_headers_install
49 - else
50 - toolchain-glibc_src_install
51 - fi
52 + toolchain-glibc_src_install
53 [[ -z ${OABI} ]] && src_strip
54 }
55
56
57
58 --
59 gentoo-commits@l.g.o mailing list