diff options
author | Robert Buchholz <rbu@gentoo.org> | 2008-09-01 00:30:53 +0000 |
---|---|---|
committer | Robert Buchholz <rbu@gentoo.org> | 2008-09-01 00:30:53 +0000 |
commit | b5b844602f7536200c4d5f17fc5071df093e5f87 (patch) | |
tree | 539f64359d7e3b4608cde0e1b25759956ca7f63d /app-emulation/xen/files | |
parent | Bump wrt bug 226373 (diff) | |
download | gentoo-2-b5b844602f7536200c4d5f17fc5071df093e5f87.tar.gz gentoo-2-b5b844602f7536200c4d5f17fc5071df093e5f87.tar.bz2 gentoo-2-b5b844602f7536200c4d5f17fc5071df093e5f87.zip |
Version bump to Xen 3.3 (bug #201792).
Bugs fixed:
* Fix invalid sed that broke gcc-4.3 (bug #217151)
(Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc4-git1 x86_64)
Diffstat (limited to 'app-emulation/xen/files')
-rw-r--r-- | app-emulation/xen/files/xen-sed-gcc.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app-emulation/xen/files/xen-sed-gcc.patch b/app-emulation/xen/files/xen-sed-gcc.patch new file mode 100644 index 000000000000..87f6e165551a --- /dev/null +++ b/app-emulation/xen/files/xen-sed-gcc.patch @@ -0,0 +1,22 @@ +# HG changeset patch +# User Keir Fraser <keir.fraser@citrix.com> +# Date 1219920196 -3600 +# Node ID 83fb5b3e55e12e2b94d34eb168c3c5c30e75d089 +# Parent 05e59668aa77d9566b22796768f7fe6a6d89b915 +Use 'gcc -v 2>&1 | tail -1' to extract gcc version. + +Signed-off-by: Keir Fraser <keir.fraser@citrix.com> +xen-unstable changeset: 18380:6c6bda7f09cde36fa875941d7202e77620fdc687 +xen-unstable date: Wed Aug 27 11:47:02 2008 +0100 + +--- a/xen/Makefile Thu Aug 28 11:41:56 2008 +0100 ++++ b/xen/Makefile Thu Aug 28 11:43:16 2008 +0100 +@@ -87,7 +87,7 @@ include/xen/compile.h: include/xen/compi + -e 's/@@whoami@@/$(XEN_WHOAMI)/g' \ + -e 's/@@domain@@/$(XEN_DOMAIN)/g' \ + -e 's/@@hostname@@/$(shell hostname)/g' \ +- -e 's!@@compiler@@!$(shell $(CC) $(CFLAGS) -v 2>&1 | grep -i "gcc.*version")!g' \ ++ -e 's!@@compiler@@!$(shell $(CC) $(CFLAGS) -v 2>&1 | tail -1)!g' \ + -e 's/@@version@@/$(XEN_VERSION)/g' \ + -e 's/@@subversion@@/$(XEN_SUBVERSION)/g' \ + -e 's/@@extraversion@@/$(XEN_EXTRAVERSION)/g' \ |