qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] Remove -s flag in Makefile


From: Glauber Costa
Subject: [Qemu-devel] [PATCH] Remove -s flag in Makefile
Date: Wed, 25 Mar 2009 15:45:14 -0300

install -s is pretty and cute, but makes the binary get into the build
directory without any debug information. This is bad, and makes glommer
sad. Also, tools that attempt to extract that data, like fedora debuginfo
extractor, will fail.

Signed-off-by: Glauber Costa <address@hidden>
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index 82fec80..859614b 100644
--- a/Makefile
+++ b/Makefile
@@ -251,7 +251,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.0.6





reply via email to

[Prev in Thread] Current Thread [Next in Thread]