aboutsummaryrefslogtreecommitdiffstats
path: root/packages/qemu
diff options
context:
space:
mode:
authorGraeme Gregory <dp@xora.org.uk>2008-01-30 10:45:28 +0000
committerGraeme Gregory <dp@xora.org.uk>2008-01-30 10:45:28 +0000
commitc5dd5bfdffff19a8bbef1248789f102c7cab0493 (patch)
tree3d17e459ccff3154a81e504d72ac6e3741f1d53d /packages/qemu
parenta87a2ebb1845dc818a46b80054bcb0370450ae41 (diff)
downloadopenembedded-c5dd5bfdffff19a8bbef1248789f102c7cab0493.tar.gz
qemu_0.9.1.bb : add the no-strip patch from #3721
Diffstat (limited to 'packages/qemu')
-rw-r--r--packages/qemu/qemu-0.9.1/no-strip.patch22
-rw-r--r--packages/qemu/qemu_0.9.1.bb5
2 files changed, 25 insertions, 2 deletions
diff --git a/packages/qemu/qemu-0.9.1/no-strip.patch b/packages/qemu/qemu-0.9.1/no-strip.patch
new file mode 100644
index 0000000000..fc69b37e16
--- /dev/null
+++ b/packages/qemu/qemu-0.9.1/no-strip.patch
@@ -0,0 +1,22 @@
+--- qemu.orig/Makefile 2008-01-29 23:16:27.000000000 -0800
++++ qemu-0.9.1/Makefile 2008-01-29 23:16:38.000000000 -0800
+@@ -174,7 +174,7 @@
+ install: all $(if $(BUILD_DOCS),install-doc)
+ mkdir -p "$(DESTDIR)$(bindir)"
+ ifneq ($(TOOLS),)
+- $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
++ $(INSTALL) -m 755 $(TOOLS) "$(DESTDIR)$(bindir)"
+ endif
+ mkdir -p "$(DESTDIR)$(datadir)"
+ for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
+--- qemu.orig/Makefile.target 2008-01-29 23:16:27.000000000 -0800
++++ qemu-0.9.1/Makefile.target 2008-01-29 23:17:33.000000000 -0800
+@@ -632,7 +632,7 @@
+
+ install: all
+ ifneq ($(PROGS),)
+- $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
++ $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
+ endif
+
+ ifneq ($(wildcard .depend),)
diff --git a/packages/qemu/qemu_0.9.1.bb b/packages/qemu/qemu_0.9.1.bb
index 9f07f45f05..2f0aba7e64 100644
--- a/packages/qemu/qemu_0.9.1.bb
+++ b/packages/qemu/qemu_0.9.1.bb
@@ -1,6 +1,6 @@
LICENSE = "GPL"
DEPENDS = "zlib"
-PR = "r5"
+PR = "r6"
FILESPATH = "${FILE_DIRNAME}/qemu-${PV}"
FILESDIR = "${WORKDIR}"
@@ -32,7 +32,8 @@ SRC_URI = "\
file://workaround_bad_futex_headers.patch;patch=1 \
file://fix_segfault.patch;patch=1 \
file://configure_symlinkpath_fix.patch;patch=1 \
- file://disable-error-in-configure.patch;patch=1"
+ file://disable-error-in-configure.patch;patch=1 \
+ file://no-strip.patch;patch=1"
S = "${WORKDIR}/qemu-${PV}"