--- ip/Makefile +++ 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: --- misc/Makefile +++ 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 --- tc/Makefile +++ tc/Makefile @@ -71,9 +71,9 @@ libtc.a: $(TCLIB) install: all mkdir -p $(DESTDIR)/$(LIBDIR)/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)/$(LIBDIR)/tc; \ + do install -m 755 $$i $(DESTDIR)/$(LIBDIR)/tc; \ done clean: