diff options
author | Richard Purdie <richard@openedhand.com> | 2007-01-16 17:00:49 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-01-16 17:00:49 +0000 |
commit | 81db74a207c0f611fc3574a3345bd1c5f2946b83 (patch) | |
tree | 2f71609e13f9011354927245a7998ebca244b58a /meta | |
parent | 990788b29580f8689933b5af21dc9cb62c726b0e (diff) | |
download | poky-81db74a207c0f611fc3574a3345bd1c5f2946b83.tar.gz |
qemu: Update qemu patches svn date.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1147 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/packages/qemu/qemu-native_cvs.bb | 8 | ||||
-rw-r--r-- | meta/packages/qemu/qemu_cvs.bb | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/meta/packages/qemu/qemu-native_cvs.bb b/meta/packages/qemu/qemu-native_cvs.bb index 83d599771c..01cc9c181d 100644 --- a/meta/packages/qemu/qemu-native_cvs.bb +++ b/meta/packages/qemu/qemu-native_cvs.bb | |||
@@ -7,10 +7,12 @@ python __anonymous() { | |||
7 | from bb import which, data | 7 | from bb import which, data |
8 | 8 | ||
9 | path = data.getVar('PATH', d) | 9 | path = data.getVar('PATH', d) |
10 | oeconf = data.getVar('EXTRA_OECONF', d) or '' | ||
10 | if len(which(path, 'gcc-3.4')) != 0: | 11 | if len(which(path, 'gcc-3.4')) != 0: |
11 | data.setVar('EXTRA_OECONF', " --cc=gcc-3.4", d) | 12 | data.setVar('EXTRA_OECONF', oeconf + " --cc=gcc-3.4", d) |
12 | elif len(which(path, 'gcc34')) != 0: | 13 | elif len(which(path, 'gcc34')) != 0: |
13 | data.setVar('EXTRA_OECONF', " --cc=gcc34", d) | 14 | data.setVar('EXTRA_OECONF', oeconf + " --cc=gcc34", d) |
14 | elif len(which(path, 'gcc-3.3')) != 0: | 15 | elif len(which(path, 'gcc-3.3')) != 0: |
15 | data.setVar('EXTRA_OECONF', " --cc=gcc-3.3", d) | 16 | data.setVar('EXTRA_OECONF', oeconf + " --cc=gcc-3.3", d) |
17 | #data.setVarFlag('PKG_CONFIG_PATH', 'unexport', '1', d) | ||
16 | } | 18 | } |
diff --git a/meta/packages/qemu/qemu_cvs.bb b/meta/packages/qemu/qemu_cvs.bb index e738d934e7..501aa1dc5c 100644 --- a/meta/packages/qemu/qemu_cvs.bb +++ b/meta/packages/qemu/qemu_cvs.bb | |||
@@ -7,7 +7,7 @@ FILESDIR = "${WORKDIR}" | |||
7 | 7 | ||
8 | SRC_URI = "\ | 8 | SRC_URI = "\ |
9 | cvs://anonymous@cvs.savannah.nongnu.org/sources/qemu;method=pserver;rsh=ssh;module=qemu \ | 9 | cvs://anonymous@cvs.savannah.nongnu.org/sources/qemu;method=pserver;rsh=ssh;module=qemu \ |
10 | svn://svn.o-hand.com/repos/misc/trunk/qemu-packaging/qemu;module=debian;proto=http;srcdate=20061207 \ | 10 | svn://svn.o-hand.com/repos/misc/trunk/qemu-packaging/qemu;module=debian;proto=http;srcdate=20070116 \ |
11 | file://debian/patches/01_doc_typos.patch;patch=1;pnum=1 \ | 11 | file://debian/patches/01_doc_typos.patch;patch=1;pnum=1 \ |
12 | file://debian/patches/02_snapshot_use_tmpdir.patch;patch=1;pnum=0 \ | 12 | file://debian/patches/02_snapshot_use_tmpdir.patch;patch=1;pnum=0 \ |
13 | file://debian/patches/03_machines_list_no_error.patch;patch=1;pnum=0 \ | 13 | file://debian/patches/03_machines_list_no_error.patch;patch=1;pnum=0 \ |
@@ -62,5 +62,7 @@ SRC_URI = "\ | |||
62 | 62 | ||
63 | S = "${WORKDIR}/qemu" | 63 | S = "${WORKDIR}/qemu" |
64 | 64 | ||
65 | #EXTRA_OECONF = "--disable-sdl" | ||
66 | |||
65 | inherit autotools | 67 | inherit autotools |
66 | 68 | ||