From 03ffadfe02bf8adbb76e7a3efcdec9e8825bafba Mon Sep 17 00:00:00 2001 From: "osdl.net!shemminger" Date: Wed, 9 Feb 2005 22:05:41 +0000 Subject: [PATCH] don't strip shell scripts (Logical change 1.141) --- ip/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ip/Makefile b/ip/Makefile index a1326d12..bcc419be 100644 --- a/ip/Makefile +++ b/ip/Makefile @@ -6,9 +6,10 @@ IPOBJ=ip.o ipaddress.o iproute.o iprule.o \ RTMONOBJ=rtmon.o ALLOBJ=$(IPOBJ) $(RTMONOBJ) -TARGETS=ip rtmon ifcfg rtpr +SCRIPTS=ifcfg rtpr routel routef +TARGETS=ip rtmon -all: $(TARGETS) +all: $(TARGETS) $(SCRIPTS) ip: $(IPOBJ) $(LIBNETLINK) $(LIBUTIL) @@ -16,7 +17,7 @@ rtmon: $(RTMONOBJ) $(LIBNETLINK) install: all install -m 0755 -s $(TARGETS) $(DESTDIR)$(SBINDIR) - install -m 0755 routel routef $(DESTDIR)$(SBINDIR) + install -m 0755 $(SCRIPTS) $(DESTDIR)$(SBINDIR) clean: rm -f $(ALLOBJ) $(TARGETS)