netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Do not strip binaries with `install`
@ 2008-03-16  8:27 Mike Frysinger
  2008-04-01 19:23 ` Stephen Hemminger
  0 siblings, 1 reply; 2+ messages in thread
From: Mike Frysinger @ 2008-03-16  8:27 UTC (permalink / raw)
  To: stephen.hemminger, netdev

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 ip/Makefile   |    2 +-
 misc/Makefile |    2 +-
 tc/Makefile   |    4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ip/Makefile b/ip/Makefile
index d908817..73978ff 100644
--- a/ip/Makefile
+++ b/ip/Makefile
@@ -17,7 +17,7 @@ ip: $(IPOBJ) $(LIBNETLINK) $(LIBUTIL)
 rtmon: $(RTMONOBJ) $(LIBNETLINK)
 
 install: all
-	install -m 0755 -s $(TARGETS) $(DESTDIR)$(SBINDIR)
+	install -m 0755 $(TARGETS) $(DESTDIR)$(SBINDIR)
 	install -m 0755 $(SCRIPTS) $(DESTDIR)$(SBINDIR)
 
 clean:
diff --git a/misc/Makefile b/misc/Makefile
index bda37e5..8c25381 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -27,7 +27,7 @@ ssfilter.c: ssfilter.y
 lnstat: $(LNSTATOBJ)
 
 install: all
-	install -m 0755 -s $(TARGETS) $(DESTDIR)$(SBINDIR)
+	install -m 0755 $(TARGETS) $(DESTDIR)$(SBINDIR)
 	ln -sf lnstat $(DESTDIR)$(SBINDIR)/rtstat
 	ln -sf lnstat $(DESTDIR)$(SBINDIR)/ctstat
 
diff --git a/tc/Makefile b/tc/Makefile
index 7ece958..bf2df00 100644
--- a/tc/Makefile
+++ b/tc/Makefile
@@ -73,9 +73,9 @@ libtc.a: $(TCLIB)
 
 install: all
 	mkdir -p $(DESTDIR)/usr/lib/tc
-	install -m 0755 -s tc $(DESTDIR)$(SBINDIR)
+	install -m 0755 tc $(DESTDIR)$(SBINDIR)
 	for i in $(TCSO); \
-	do install -m 755 -s $$i $(DESTDIR)/usr/lib/tc; \
+	do install -m 755 $$i $(DESTDIR)/usr/lib/tc; \
 	done
 
 clean:
-- 
1.5.4.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-04-01 19:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-16  8:27 [PATCH] Do not strip binaries with `install` Mike Frysinger
2008-04-01 19:23 ` Stephen Hemminger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).