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_unpack.eblit
Date: Sat, 28 Sep 2013 22:08:01
Message-Id: 20130928220758.1E0ED2004C@flycatcher.gentoo.org
1 vapier 13/09/28 22:07:57
2
3 Modified: src_unpack.eblit
4 Log:
5 Tweak how we check the kernel header version to work w/clang #485146 by eroen.
6
7 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
8
9 Revision Changes Path
10 1.24 sys-libs/glibc/files/eblits/src_unpack.eblit
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/src_unpack.eblit?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/src_unpack.eblit?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/files/eblits/src_unpack.eblit?r1=1.23&r2=1.24
15
16 Index: src_unpack.eblit
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_unpack.eblit,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- src_unpack.eblit 29 Jun 2013 03:22:32 -0000 1.23
23 +++ src_unpack.eblit 28 Sep 2013 22:07:57 -0000 1.24
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_unpack.eblit,v 1.23 2013/06/29 03:22:32 heroxbd Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_unpack.eblit,v 1.24 2013/09/28 22:07:57 vapier Exp $
29
30 int_to_KV() {
31 local version=$1 major minor micro
32 @@ -17,7 +17,7 @@
33
34 get_kheader_version() {
35 printf '#include <linux/version.h>\nLINUX_VERSION_CODE\n' | \
36 - $(tc-getCPP ${CTARGET}) -I "${EPREFIX}/$(alt_build_headers)" | \
37 + $(tc-getCPP ${CTARGET}) -I "${EPREFIX}/$(alt_build_headers)" - | \
38 tail -n 1
39 }