From 69286fe8b3fe514757b95b2c59d01b44994ece40 Mon Sep 17 00:00:00 2001 From: "osdl.net!shemminger" Date: Mon, 30 Aug 2004 20:54:46 +0000 Subject: [PATCH] Typo in install of distribution files. (Logical change 1.73) --- tc/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tc/Makefile b/tc/Makefile index 5a34becb..4e9e683d 100644 --- a/tc/Makefile +++ b/tc/Makefile @@ -57,9 +57,12 @@ libtc.a: $(TCLIB) install: all mkdir -p $(DESTDIR)/usr/lib/tc install -m 0755 -s tc $(DESTDIR)$(SBINDIR) - for i in $(TCSO) $(NETEM_DIST; \ + for i in $(TCSO); \ do install -m 755 -s $$i $(DESTDIR)/usr/lib/tc; \ done + for i in $(NETEM_DIST); \ + do install -m 755 $$i $(DESTDIR)/usr/lib/tc; \ + done clean: rm -f $(TCOBJ) $(TCLIB) $(NETEM_DIST) libtc.a tc