Sophie

Sophie

distrib > Scientific%20Linux > 5x > x86_64 > by-pkgid > 340e01248478ba8b78a6d4d1809b1eff > files > 691

kvm-83-270.el5_11.src.rpm

From 95b634a74d8b10a1bedfc7419bfd3abc8ddba920 Mon Sep 17 00:00:00 2001
From: Eduardo Habkost <ehabkost@redhat.com>
Date: Thu, 2 Sep 2010 13:55:39 -0300
Subject: [PATCH 7/7] qemu: don't strip qemu-img and qemu-io in 'make install'

RH-Author: Eduardo Habkost <ehabkost@redhat.com>
Message-id: <20100902135539.GK3590@blackpad.lan.raisama.net>
Patchwork-id: 11727
O-Subject: [RHEL-5.6 KVM PATCH] qemu: don't strip qemu-img and qemu-io in
	'make install'
Bugzilla: 606394
RH-Acked-by: Luiz Capitulino <lcapitulino@redhat.com>
RH-Acked-by: Jes Sorensen <Jes.Sorensen@redhat.com>
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>

Upstream never uses the 'install -s' option either, and we want unstripped
binaries to be available for the kvm-debuginfo RPM.

The RPM build system already makes sure the binary is stripped for the main
package, after extracting the debug information for kvm-debuginfo.

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=606394

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
 qemu/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
 qemu/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/qemu/Makefile b/qemu/Makefile
index 9249d89..d9def02 100644
--- a/qemu/Makefile
+++ b/qemu/Makefile
@@ -287,7 +287,7 @@ endif
 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
 ifneq ($(BLOBS),)
 	mkdir -p "$(DESTDIR)$(datadir)"
-- 
1.6.5.5