diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-08-22 20:30:13 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-08-22 20:30:13 +0000 |
commit | ee8c7fff7a920cdd64f80b314509c20eded79ccd (patch) | |
tree | 63dea64b401af378cf6218498be15a73af780e2e /packages/qemu/files | |
parent | 2b383b0690d728c93df9f37189c86a33061d9243 (diff) |
qemu: remove stripping during do_stage - close #2831
Diffstat (limited to 'packages/qemu/files')
-rw-r--r-- | packages/qemu/files/no-strip.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/qemu/files/no-strip.patch b/packages/qemu/files/no-strip.patch new file mode 100644 index 0000000000..59ed8771fe --- /dev/null +++ b/packages/qemu/files/no-strip.patch @@ -0,0 +1,22 @@ +--- qemu.orig/Makefile ++++ qemu/Makefile +@@ -68,7 +68,7 @@ + + install: all $(if $(BUILD_DOCS),install-doc) + mkdir -p "$(DESTDIR)$(bindir)" +- $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)" ++ $(INSTALL) -m 755 $(TOOLS) "$(DESTDIR)$(bindir)" + mkdir -p "$(DESTDIR)$(datadir)" + for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ + video.x openbios-sparc32 pxe-ne2k_pci.bin \ +--- qemu.orig/Makefile.target ++++ qemu/Makefile.target +@@ -655,7 +655,7 @@ + + install: all + ifneq ($(PROGS),) +- $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)" ++ $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)" + endif + + ifneq ($(wildcard .depend),) |