qemu: Update qemu patches svn date.

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1147 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2007-01-16 17:00:49 +00:00
parent 990788b295
commit 81db74a207
2 changed files with 8 additions and 4 deletions

View File

@ -7,10 +7,12 @@ python __anonymous() {
from bb import which, data
path = data.getVar('PATH', d)
oeconf = data.getVar('EXTRA_OECONF', d) or ''
if len(which(path, 'gcc-3.4')) != 0:
data.setVar('EXTRA_OECONF', " --cc=gcc-3.4", d)
data.setVar('EXTRA_OECONF', oeconf + " --cc=gcc-3.4", d)
elif len(which(path, 'gcc34')) != 0:
data.setVar('EXTRA_OECONF', " --cc=gcc34", d)
data.setVar('EXTRA_OECONF', oeconf + " --cc=gcc34", d)
elif len(which(path, 'gcc-3.3')) != 0:
data.setVar('EXTRA_OECONF', " --cc=gcc-3.3", d)
data.setVar('EXTRA_OECONF', oeconf + " --cc=gcc-3.3", d)
#data.setVarFlag('PKG_CONFIG_PATH', 'unexport', '1', d)
}

View File

@ -7,7 +7,7 @@ FILESDIR = "${WORKDIR}"
SRC_URI = "\
cvs://anonymous@cvs.savannah.nongnu.org/sources/qemu;method=pserver;rsh=ssh;module=qemu \
svn://svn.o-hand.com/repos/misc/trunk/qemu-packaging/qemu;module=debian;proto=http;srcdate=20061207 \
svn://svn.o-hand.com/repos/misc/trunk/qemu-packaging/qemu;module=debian;proto=http;srcdate=20070116 \
file://debian/patches/01_doc_typos.patch;patch=1;pnum=1 \
file://debian/patches/02_snapshot_use_tmpdir.patch;patch=1;pnum=0 \
file://debian/patches/03_machines_list_no_error.patch;patch=1;pnum=0 \
@ -62,5 +62,7 @@ SRC_URI = "\
S = "${WORKDIR}/qemu"
#EXTRA_OECONF = "--disable-sdl"
inherit autotools