Olaf Hering
2012-Dec-05 18:42 UTC
[PATCH] qemu-traditional: do not strip binaries during make install
Signed-off-by: Olaf Hering <olaf@aepfle.de> --- Makefile | 2 +- Makefile.target | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 37c7066..594f0ef 100644 --- a/Makefile +++ b/Makefile @@ -243,7 +243,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)" diff --git a/Makefile.target b/Makefile.target index 19bb0fd..1cf7f34 100644 --- a/Makefile.target +++ b/Makefile.target @@ -755,7 +755,7 @@ clean: install: all install-hook ifneq ($(PROGS),) - $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)" + $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)" endif # Include automatically generated dependency files -- 1.8.0.1
Olaf Hering
2013-Jan-16 15:47 UTC
Re: [PATCH] qemu-traditional: do not strip binaries during make install
ping On Wed, Dec 05, Olaf Hering wrote:> Signed-off-by: Olaf Hering <olaf@aepfle.de> > --- > Makefile | 2 +- > Makefile.target | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/Makefile b/Makefile > index 37c7066..594f0ef 100644 > --- a/Makefile > +++ b/Makefile > @@ -243,7 +243,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)" > diff --git a/Makefile.target b/Makefile.target > index 19bb0fd..1cf7f34 100644 > --- a/Makefile.target > +++ b/Makefile.target > @@ -755,7 +755,7 @@ clean: > > install: all install-hook > ifneq ($(PROGS),) > - $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)" > + $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)" > endif > > # Include automatically generated dependency files
Olaf Hering
2013-Apr-29 13:40 UTC
Re: [PATCH] qemu-traditional: do not strip binaries during make install
Ping On Wed, Jan 16, Olaf Hering wrote:> ping > On Wed, Dec 05, Olaf Hering wrote: > > > Signed-off-by: Olaf Hering <olaf@aepfle.de> > > --- > > Makefile | 2 +- > > Makefile.target | 2 +- > > 2 files changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/Makefile b/Makefile > > index 37c7066..594f0ef 100644 > > --- a/Makefile > > +++ b/Makefile > > @@ -243,7 +243,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)" > > diff --git a/Makefile.target b/Makefile.target > > index 19bb0fd..1cf7f34 100644 > > --- a/Makefile.target > > +++ b/Makefile.target > > @@ -755,7 +755,7 @@ clean: > > > > install: all install-hook > > ifneq ($(PROGS),) > > - $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)" > > + $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)" > > endif > > > > # Include automatically generated dependency files
Matt Wilson
2013-May-01 16:22 UTC
Re: [PATCH] qemu-traditional: do not strip binaries during make install
On Mon, Apr 29, 2013 at 03:40:27PM +0200, Olaf Hering wrote:> PingI''ve been hit by the "where are the debug symbols for this binary" problem for qemu in the past. Makes sense to me. Acked-by: Matt Wilson <msw@amazon.com>> On Wed, Jan 16, Olaf Hering wrote: > > > ping > > On Wed, Dec 05, Olaf Hering wrote: > > > > > Signed-off-by: Olaf Hering <olaf@aepfle.de> > > > --- > > > Makefile | 2 +- > > > Makefile.target | 2 +- > > > 2 files changed, 2 insertions(+), 2 deletions(-) > > > > > > diff --git a/Makefile b/Makefile > > > index 37c7066..594f0ef 100644 > > > --- a/Makefile > > > +++ b/Makefile > > > @@ -243,7 +243,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)" > > > diff --git a/Makefile.target b/Makefile.target > > > index 19bb0fd..1cf7f34 100644 > > > --- a/Makefile.target > > > +++ b/Makefile.target > > > @@ -755,7 +755,7 @@ clean: > > > > > > install: all install-hook > > > ifneq ($(PROGS),) > > > - $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)" > > > + $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)" > > > endif > > > > > > # Include automatically generated dependency files > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xen.org > http://lists.xen.org/xen-devel