Gentoo Archives: gentoo-commits

From: "Robert Buchholz (rbu)" <rbu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/xen/files: xen-sed-gcc.patch
Date: Mon, 01 Sep 2008 00:30:58
Message-Id: E1KZxJm-0003UI-Bk@stork.gentoo.org
1 rbu 08/09/01 00:30:54
2
3 Added: xen-sed-gcc.patch
4 Log:
5 Version bump to Xen 3.3 (bug #201792).
6 Bugs fixed:
7 * Fix invalid sed that broke gcc-4.3 (bug #217151)
8 (Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc4-git1 x86_64)
9
10 Revision Changes Path
11 1.1 app-emulation/xen/files/xen-sed-gcc.patch
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/xen/files/xen-sed-gcc.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/xen/files/xen-sed-gcc.patch?rev=1.1&content-type=text/plain
15
16 Index: xen-sed-gcc.patch
17 ===================================================================
18 # HG changeset patch
19 # User Keir Fraser <keir.fraser@××××××.com>
20 # Date 1219920196 -3600
21 # Node ID 83fb5b3e55e12e2b94d34eb168c3c5c30e75d089
22 # Parent 05e59668aa77d9566b22796768f7fe6a6d89b915
23 Use 'gcc -v 2>&1 | tail -1' to extract gcc version.
24
25 Signed-off-by: Keir Fraser <keir.fraser@××××××.com>
26 xen-unstable changeset: 18380:6c6bda7f09cde36fa875941d7202e77620fdc687
27 xen-unstable date: Wed Aug 27 11:47:02 2008 +0100
28
29 --- a/xen/Makefile Thu Aug 28 11:41:56 2008 +0100
30 +++ b/xen/Makefile Thu Aug 28 11:43:16 2008 +0100
31 @@ -87,7 +87,7 @@ include/xen/compile.h: include/xen/compi
32 -e 's/@@whoami@@/$(XEN_WHOAMI)/g' \
33 -e 's/@@domain@@/$(XEN_DOMAIN)/g' \
34 -e 's/@@hostname@@/$(shell hostname)/g' \
35 - -e 's!@@compiler@@!$(shell $(CC) $(CFLAGS) -v 2>&1 | grep -i "gcc.*version")!g' \
36 + -e 's!@@compiler@@!$(shell $(CC) $(CFLAGS) -v 2>&1 | tail -1)!g' \
37 -e 's/@@version@@/$(XEN_VERSION)/g' \
38 -e 's/@@subversion@@/$(XEN_SUBVERSION)/g' \
39 -e 's/@@extraversion@@/$(XEN_EXTRAVERSION)/g' \